I have a private key protected with a passowrd to access a server via SSH.

I have 2 linux (ubuntu 10.04) machines and the behavior of ssh-add command is different in both of them.

In one machine, once I use "ssh-add .ssh/identity" and entered my password, the key was added permanently, i.e., every time I shutdown the computer and login again, the key is already added.

In the other one, I have to add the key every time I login.

As far as I remember, I did the same thing on both. The only difference is that the key was created on the one that is added permanently.

Does anyone know how to add it permanently to the other machine as well?

Thanks in advance

link|improve this question

80% accept rate
feedback

1 Answer

up vote 9 down vote accepted

A solution would be to force the key files to be kept permanently, by adding them in your ~/.ssh/config file:

IdentityFile ~/.ssh/gitHubKey
IdentityFile ~/.ssh/id_rsa_buhlServer 

If you want that all user of the computer can use the key you can put these lines into /etc/ssh/ssh_config and put the key in some folder accessible from all.

link|improve this answer
3  
A better solution would be to put that line in your own private ssh config file in ~/.ssh/config – HDave Nov 30 '11 at 14:03
Yes you are right, I'll edit that :) – daminetreg Feb 3 at 10:26
feedback

Your Answer

 
or
required, but never shown

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