本地电脑密钥登陆服务器

流程:将本地的公钥放在服务器上,用自己的私钥去解,然后将线上服务器上sshd_config 的配置修改为可以用密钥登陆,重启线上服务器sshd配置文件,

本地 ssh Host名即可

ssh jerry

第一 本地/ssh/config文件配置

cd ~/.ssh ls config id_rsa id_rsa.pub known_hosts
vim config

Host jerry
User root
HostName \'线上服务器地址\'
Port \'线上服务器duankou\'
IdentityFile ~/.ssh/id_rsa # 本地服务器私钥
ForwardAgent yes
IdentitiesOnly yes

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzspgx.html