ssh远程登陆

  • A为本地主机
  • B为远程主机

在A中生成密钥并传到B上。
ssh-keygen -t rsa
scp ~/.ssh/id_rsa.pub [email protected]:.ssh/id_rsa.pub
在B上添加A的密钥。
touch ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
完成。

如果出现sign_and_send_pubkey: signing failed: agent refused operation

在A上执行:
ssh-add

你可能感兴趣的:(ssh远程登陆)