ssh logins without a password

Posted in dev-sys on April 28, 2006

Share ssh keys:

client:

cd ssh-keygen -t rsa

the copy ~/.ssh/id_rsa.pub over to server

server:

mkdir .ssh cat id_rsa.pub >> .ssh/authorized_keys

Job done

Comments (0)