Created
February 4, 2014 13:25
-
-
Save agungf/8803512 to your computer and use it in GitHub Desktop.
Remove passphrase (password) from private RSA key
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Should also work for: | |
[v] any OpenSSH installation | |
Given, your key is in id_rsa | |
1 | |
Passphrase is needed? | |
Try some host which has your public key (id_rsa.pub) | |
> ssh my_user@myhost | |
You should get Enter passphrase for key kind of response | |
2 | |
Remove passphrase | |
openssl rsa -in ~/.ssh/id_rsa -out ~/.ssh/id_rsa_new | |
and enter your old passphrase | |
3 | |
Replace key | |
Backup and replace your private ssh key | |
cp ~/.ssh/id_rsa ~/.ssh/id_rsa.backup | |
rm ~/.ssh/id_rsa | |
cp ~/.ssh/id_rsa_new ~/.ssh/id_rsa | |
4 | |
Set key permissions | |
chmod 400 ~/.ssh/id_rsa | |
5 | |
Test it | |
Now, following should log your into remote system, no questions asked | |
> ssh my_user@myhost |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment