Thanks to Radu Florian!
Q. How do I setup my account such that I can ssh to the computers without typing in my password?
A. You need to generate a set of private/public keys, and setup the ssh configuration to use them. Here's how:
ssh-keygen -t dsa
cd ~/.ssh
cp id_dsa.pub authorized_keys
# If you already have such a file, do 'cat id_dsa.pub >> authorized_keys'
echo 'Done.'
# You need to make sure that the permissions for the .ssh directory and id_dsa file are 0700
# If you want to allow for password-less connection into the cluster (from your site), repeat
# the commands at your site, and copy the contents of the id_dsa.pub file into ~/.ssh/authorized_keys
Q. How do I setup my account such that I can ssh to the computers without typing in my password?
A. You need to generate a set of private/public keys, and setup the ssh configuration to use them. Here's how:
ssh-keygen -t dsa
cd ~/.ssh
cp id_dsa.pub authorized_keys
# If you already have such a file, do 'cat id_dsa.pub >> authorized_keys'
echo 'Done.'
# You need to make sure that the permissions for the .ssh directory and id_dsa file are 0700
# If you want to allow for password-less connection into the cluster (from your site), repeat
# the commands at your site, and copy the contents of the id_dsa.pub file into ~/.ssh/authorized_keys
Comments