I need SSH access to an Amazon EC2 instance running Ubuntu 10.4. All I got is the amazon username and password. Any ideas?
相关问题
- Why doesn't php sleep work in the windows-subs
- JQ: Select when attribute value exists in a bash a
- Installing Pydev for Eclipse throws error
- Error building gcc 4.8.3 from source: libstdc++.so
- what's the role of libopenssl-ruby?
相关文章
- 为什么nfs在不同版本的Linux下安装的文件都不一样
- I cannot locate production log files on Elastic Be
- Incompatible JavaHl library loaded
- Python - Node.js (V8) runtime is not available on
- Ubuntu graphviz 'sfdp' not working
- AWS - Configuring access to EC2 instance from Bean
- Gearman , php extension problem : Class 'Gearm
- Decrease the tabs bar height in gnome terminal
You need to create a key pair first - do that using your EC2 console. Then use your private key to SSH into the server (the username is
ec2-user
) using a SSH client of your choice.Once in, you can issue a
sudo su -
to gain root if you want (note: you cant log in as root directly).