I'm working on Ubuntu and want to use multiple private keys to connect to different servers or different portions of the same server (My uses are admin of server, admin of git, and normal git usage within the same server). I tried simply stacking the keys in the id_rsa files to no avail.

Apparently the way to do this is use the command ssh -i <key location> login@server.com. That is quite cumbersome.

Any suggestions as to how to go about doing this a bit easier?

link|improve this question

50% accept rate
feedback

5 Answers

up vote 87 down vote accepted

From my .ssh/config:

Host myshortname realname.example.com
Hostname realname.example.com
IdentityFile ~/.ssh/realname_rsa # private key for realname

Host myother realname2.example.org
Hostname realname2.example.org
IdentityFile ~/.ssh/realname2_rsa

And so on.

link|improve this answer
4  
Thanks Randal! I did some digging into the .ssh/config and found this: github.com/guides/multiple-github-accounts Pointed me in the right direction. – Justin Mar 10 '10 at 19:30
This was a great help (in addition to stackoverflow.com/a/3828682/169153). If you want to use putty keys follow this document here: blog.padraigkitterick.com/2007/09/16/… – Urda Mar 14 at 23:14
feedback

The answer from Randal Schwartz almost helped me all the way. I have a different username on the server, so I had to add the User keyword to my file:

Host           friendly-name
HostName       long.and.cumbersome.server.name
IdentityFile   ~/.ssh/private_ssh_file
User           username-on-remote-machine

Now you can connect using the friendly-name:

ssh friendly-name

More keywords can be found on the OpenSSH man page. NOTE: Some of the keywords listed might already be present in your /etc/ssh/ssh_config file.

link|improve this answer
feedback
foo:~$ssh-add ~/.ssh/xxx_id_rsa

make sure you test it before adding with:

ssh -i ~/.ssh/xxx_id_rsa username@site.com

If you have any problems with errors sometimes changing the security of the file helps

chmod 0600 ~/.ssh/xxx_id_rsa
link|improve this answer
This is the most succinct and elegant solution in my opinion. Worked like a charm! – artur Oct 1 '10 at 1:17
This works great until you restart your machine on mac os X. – Bobo Nov 21 '11 at 19:04
feedback

Use ssh-agent for your keys.

link|improve this answer
feedback

In order to provide some more examples to make it clearer I have jotted down the required changes at http://sampreshan.svashishtha.com/2012/05/20/quicktip-github-multiple-accounts-access-with-ssh/

link|improve this answer
Answers should be more than just a link to an external site. – Michael J. Barber May 20 at 17:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.