Skip to content

Amazon Web Services

mohsensalari edited this page Apr 18, 2016 · 3 revisions

EC2 Instance

The instance currently created is on the free tier and is for testing purposes. To do the actual experiments, a stronger instance, possibly having a good GPU processing power should be set up instead.

Connecting to EC2 instance

  1. Locate the private key (ask Mohsen for instructions on how to create one if you don't already know).
  2. Our key must not be publicly viewable for SSH to work. Use this command if needed:
chmod 400 aws-dev.pem
  1. We must connect to our instance using this public DNS: ec2-54-201-40-120.us-west-2.compute.amazonaws.com:
ssh -i "aws-dev.pem" ec2-user@ec2-54-201-40-120.us-west-2.compute.amazonaws.com

The username will change when we change the instance "type" (switching from free tier).

Clone this wiki locally