-
-
Notifications
You must be signed in to change notification settings - Fork 6
POV–Ray on Amazon EC2
Jakob Flierl edited this page May 7, 2016
·
16 revisions
- Sign in to Amazon Web Services (AWS) Console at https://aws.amazon.com :
create an EC2 instance with Ubuntu 14.04 LTS:
- Click "Compute -> EC2 -> Launch Instance":
- Select "Ubuntu Server 14.04 LTS (HVM), SSD Volume Type - ami-9abea4fb":
- Select "Filter by: Compute optimized":
- Select "Type: c4.8xlarge" and click "Next: Configure Instance Details":
- Select "Auto-assign Public IP: Enable" and click "Review and Launch":
- Select an existing key pair or create a new key pair and click "Launch instance":
$ tail -n 7 ~/.ssh/config
Host ec2
Hostname ec2-52-25-43-224.us-west-2.compute.amazonaws.com # your EC2 hostname
User ubuntu
IdentitiesOnly yes
IdentityFile ~/.ssh/pov.pem
- Check that ssh works:
$ ssh ec2
...
- ...
- ...