Amazon Notes - apycazo/playground GitHub Wiki
Links
Configure Putty session and mRemoteNG
http://technotes.khitrenovich.com/opening-ssh-aws-hosted-linux-servers-mremoteng/
Getting started
https://aws.amazon.com/es/getting-started/tutorials/launch-a-virtual-machine/
Connection and login
Login
User names seems to include:
- root
- ec2-user
- ubuntu
Reenable password access
- Login as root using key pairs
- Create user with
sudo adduser USERNAMEand set passwordsudo passwd USERNAME - Edit /etc/ssh/sshd_config setting:
PasswordAuthentication yes - Restart daemon:
sudo service sshd restart