使用ssh-keygen及ssh-copy-id免密ssh登录

安装ssh-copy-id

curl -L https://raw.githubusercontent.com/beautifulcode/ssh-copy-id-for-OSX/master/install.sh | sh

生成公钥、私钥

# rsa加密类型,密钥长度4096位
ssh-keygen -b 4096 -t rsa 

公钥上传服务器

ssh-copy-id user_name@remote-server

这样就可以免密登录服务器了

更多参考,访问 https://www.ssh.com/ssh/copy-id

你可能感兴趣的:(使用ssh-keygen及ssh-copy-id免密ssh登录)