Setup SSH access without password
Say you have two machines one client and the other server. You want to ssh <server_user>@<server> from <client_user>@<client> without password. Follow the following steps:- Login as <client_user> on <client> machine. run command : ssh-keygen -t rsa hit enter for any prompts. This shall create two files id_rsa (private key) and id_rsa.pub (public key) under ~/.ssh …