Amazon AWS/EC2

From Bibliotheca Anonoma
Revision as of 20:48, 30 January 2018 by Antonizoon (talk | contribs) (Created page with "== Accessing Instance == You must change permissions of the key pair to 400. <pre>chmod 400 /path/my-key-pair.pem ssh -i /path/my-key-pair.pem [email protected]...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Accessing Instance

You must change permissions of the key pair to 400.

chmod 400 /path/my-key-pair.pem
ssh -i /path/my-key-pair.pem [email protected]

Accessing Instances in Linux

Add Users

http://stackoverflow.com/questions/3260739/add-keypair-to-existing-ec2-instance

pam_ssh

Another handy thing to do is single-sign on. Now that you've authenticated once with your SSH private key, you might as well have it authenticate the password anyway, so you don't have to type it in yet again for sudo.

If you compromise your private key everything is f***ed anyway.

How to Use Byobu

Your shell is equipped with Byobu, which is a nifty shell that allows processes to stay running even if you disconnect. It also allows you to have multiple tabs, a must have when running multiple processes.

  • F2 (New Tab) - Press this button to create a new tab.
  • F3 (Switch Tab) - Press this button to toggle between tabs.
  • F6 (Disconnect) - Press this button to disconnect from the shell. Your programs will still keep running and you can check back on them next time you log in.
  • exit - Run the exit command in any tab to close that tab when you no longer need it.

If you are using PuTTY and are facing issues with the function keys, set this up.

Handy Programs

  • internetarchive Uploader
  • The Internet Archive requires metadata for creating new objects. For now, just create new objects using the web interface and upload a small file.
  • Then, upload the real files from the server using:
  • ia upload <identifier> file1 file2
  • Wget - Wget makes WARCs.

Sources