Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Got password-less ssh/sftp enabled on the server, wanted to quick login using the given private key w/o having to add it to id_rsa.
Here are the commands to do that.
SSH :
ssh -i /path/to/private/key user@hostname
SFTP:
sftp -oIdentityFile=/path/to/private/key user@hostname
Cheers!
for more info goto puttygen.com
This saved my day!! Thanks a lot!