Setup Passwordless SSH
From http://www.cs.utah.edu/~bigler/code/sshkeys.html Generate your key pair (do no enter password when prompted)
1 2 | cd ~/.ssh ssh-keygen -t rsa |
Copy public key to remote server
1 2 3 4 | cat ~/.ssh/id_rsa.pub | ssh user@remote.machine.com 'cat >> .ssh/authorized_keys' # If you need to make a .ssh directory on the remote machine cat ~/.ssh/id_rsa.pub | ssh user@remote.machine.com 'mkdir .ssh; cat >> .ssh/authorized_keys' |