Wednesday, February 6th, 2008
Password – less logins and aliases with ssh
Problem
You want to be able to login to different servers with ssh, but don’t want to be using your password every time.
Solution
We assume that you already have installed ssh and have created ssh public keys in your local machine.
Run the following in your local machine:
ssh-copy-id -i ~/.ssh/id_rsa.pub user_name@remote_host
If you want to add aliases in your [...]