<div dir="ltr"><div>When you download the pem file for accessing the VM over SSH, make sure you change the permissions on the file.</div><div><br></div><div>SSH does not like to use keys that other users can touch, so I suggest (I named my key 615-sysadmin.pem):</div><div><br></div><div>$ cp ~/Downloads/615-sysadmin.pem ~/.ssh<br></div><div>$ chmod 400 ~/.ssh/615-sysadmin.pem</div><div><br></div><div>Also helpful for accessing the VM is to alias it in your SSH config. For example:<br></div><div><br></div><div>Host sysadmin<br>    Hostname <a href="http://ec2-0-0-0-0.compute-1.amazonaws.com">ec2-0-0-0-0.compute-1.amazonaws.com</a><br>    Port 22<br>    User root<br>    IdentityFile ~/.ssh/615-sysadmin.pem</div><div><br></div><div>Then you can access the VM by running</div><div><br></div><div>$ ssh sysadmin<br></div><div><br></div><div>Hope this helps!<br><br></div><div>Ed<br></div></div>