Changes between Version 41 and Version 42 of HowTo/LoginToNodes


Ignore:
Timestamp:
08/21/12 16:40:50 (12 years ago)
Author:
nriga@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/LoginToNodes

    v41 v42  
    236236
    237237Now you can simply run `ssh <your_alias>`, where <your_alias> can be any nickname you choose.
     238
     239=== I don't want to keep typing my passphrase ===
     240It is highly recommended that you keep passphrases in all your ssh keys. There are ways using ssh agents so that you only type the passphrase once. Take a look [wiki:# here] for more information. If nothing like this works for you and you want to remove the passphrase from your private keys then you can use the following steps (assuming that your private key is '''id_rsa'''):
     241{{{
     242mv id_rsa id_rsa.encrypted
     243openssl rsa -in id_rsa.encrypted -out id_rsa
     244<type your passphrase when prompted>
     245chmod 400 id_rsa
     246}}}