Created
September 14, 2010 16:58
-
-
Save xeoncross/579356 to your computer and use it in GitHub Desktop.
Creating/Adding SSH 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
## add your public key to a new server | |
ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected] | |
# new key | |
scp ~/.ssh/id_rsa.pub user@hostname:~/.ssh/authorized_keys | |
ssh user@hostname | |
cd .ssh | |
chmod 600 authorized_keys | |
# adding a key | |
cd ~/.ssh | |
scp id_rsa.pub user@hostname:~/.ssh | |
ssh user@hostname | |
cd .ssh | |
cat id_rsa.pub >> authorized_keys |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment