hacer que no pida password ssh

# desde maquina cliente se genera key. Se tira el comando de abajo y luego todo enter
ssh-keygen
 


////////-> Si tenes instalado el ssh-copy-id:

ssh-copy-id user@host

#y listo!!! Si no esta instalado en mac:
curl -L https://raw.githubusercontent.com/beautifulcode/ssh-copy-id-for-OSX/master/install.sh | sh




/////////-> Manera larga sin ssh-id #copy the pub key to the remote computer #(change port number if different from the usual 22) #change "user" to your user name #change "host" to your domain name scp -P 22 ~/.ssh/id_rsa.pub user@host:~/   #log on to the remote computer ssh -p 22 user@host   #create the .ssh directory in the root login directory, if it doesn't already exist mkdir .ssh   #append key to file cat id_rsa.pub >> ~/.ssh/authorized_keys   #delete the public key file, no longer needed rm -f id_rsa.pub   #log off the remote server exit   #logon to the remote server, without password prompt ssh -2 -p 22 user@host