vote up 2 vote down star
3

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!

flag
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

3 Answers

vote up 1 vote down check

Take a look at this passwordless SSH tutorial.

link|flag
vote up 6 vote down

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|flag
vote up 0 vote down

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|flag
Don't modern distribution start an ssh-agent out of the box? – Troels Arvin Nov 20 '08 at 8:18

Your Answer

Get an OpenID
or

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