aws-samples / aws-ai-bootcamp-labs

This library holds a collection of Notebooks and code examples for AWS AI Bootcamps.
Apache License 2.0
112 stars 56 forks source link

wrong username in ssh connection example #2

Closed uliludmann closed 6 years ago

uliludmann commented 6 years ago

README.md: wrong line: ssh -i user.pem -L 8888:localhost:8888 ubuntu@ec2-ip-ip-ip-ip.region.compute.amazonaws.com

correct: ssh -i user.pem -L 8888:localhost:8888 ec2-user@ec2-ip-ip-ip-ip.region.compute.amazonaws.com

cubetoon commented 6 years ago

There are currently three primary flavors of the Deep Learning AMI with variations related to the operating system. For EC2 instances created based on the Amazon Linux AMI use ec2-user@, for EC2 instances created based on the Ubuntu AMI use ubuntu@ to connect to the instance via SSH. You can find more details about the different Deep Learning AMIs in the Developer Guide.