up vote 22 down vote favorite
6
share [g+] share [fb]

I set a passphrase when creating a new SSH key on my laptop. But, as I realise now, this is quite a PITA when you are trying to commit(git,svn) to a remote location over SSH many times in an hour.

One way I can think of is, delete my SSH keys and create new. Is there a way to remove the passphrase, while still keeping the same keys?

Answer:

In short, follow these steps:

$ ssh-agent bash

$ ssh-add ~/.ssh/id_rsa

$ ssh username@remote

Voila!

link|improve this question
2  
I think the strict answer is actually Torsten Marek's response. The ssh-agent trick may be what you are looking for, but it's an answer to a different question. – tardate Sep 22 '08 at 6:45
While a good question, this might be better suited to superuser.com. – Eddie Parker Apr 15 '10 at 18:01
feedback

closed as off topic by Marc Gravell Apr 16 '10 at 4:21

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

3 Answers

up vote 3 down vote accepted

Take a look at this passwordless SSH tutorial.

link|improve this answer
1  
This link no longer works, just FYI. – MikeH Jan 18 at 15:17
feedback

Short answer:

$ ssh-keygen -p [-P old_passphrase] [-N new_passphrase] [-f keyfile]

However, you might want to consider using ssh-agent, which can cache the passphrase for a time.

The latest versions of gpg-agent also support the protocol that is used by ssh-agent.

link|improve this answer
1  
+1 for answering the question, and mental +1 for offering a superior solution to the problem. – Eddie Parker Apr 15 '10 at 18:02
10  
To be explicit: you can just run ssh-keygen -p in a terminal. It will then prompt you for a keyfile (defaulted to the correct file for me, ~/.ssh/id_rsa), the old passphrase (enter what you have now) and the new passphrase (enter nothing). – Henrik N Apr 25 '11 at 19:51
feedback

You might want to add the following to your .bash_profile (or equivalent), which starts ssh-agent on login.

if [ -f ~/.agent.env ] ; then
    . ~/.agent.env > /dev/null
if ! kill -0 $SSH_AGENT_PID > /dev/null 2>&1; then
    echo "Stale agent file found. Spawning new agent… "
    eval `ssh-agent | tee ~/.agent.env`
    ssh-add
fi 
else
    echo "Starting ssh-agent"
    eval `ssh-agent | tee ~/.agent.env`
    ssh-add
fi

On some Linux distros (Ubuntu, Debian) you can use:

ssh-copy-id -i ~/.ssh/id_dsa.pub username@host

This will copy the generated id to a remote machine and add it to the remote keychain.

You can read more here and here.

link|improve this answer
Don't modern distribution start an ssh-agent out of the box? – Troels Arvin Nov 20 '08 at 8:18
feedback

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