create public key linux
ssh-keygen -t rsa -C "[email protected]"
create public key linux
ssh-keygen -t rsa -C "[email protected]"
ssh - use public key to login
# generate ssh key first on your source host:
ssh-keygen -t rsa
# copy it to the remote/target host:
ssh-copy-id remote_username@server_ip_addressCopy
# if for some reason the above method unavailable, use:
cat ~/.ssh/id_rsa.pub | ssh remote_username@server_ip_address "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat >> ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys"
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us