linux服务器设置ssh秘钥对登录

  1. linux 服务器生成ssh秘钥对ssh-keygen -t rsa
  2. cat /root/.ssh/id_rsa.pub >> /root/.ssh/authorized_keys将服务器公钥加入秘钥文件中
  3. vi /etc/ssh/sshd_config修改ssh服务配置文件

RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile /root/.ssh/authorized_keys

  • 是否禁用账户密码登录看意愿
    PasswordAuthentication yes
  1. 重启ssh服务
    service sshd restart

centos7 systemctl restart sshd.service

然后将自己本地的ssh钥匙对追加到authorized_keys文件中

总结

本人微信公众号以及博客地址

linux服务器设置ssh秘钥对登录_第1张图片

csdn博客地址

以上是linux服务器设置ssh秘钥对登录,文档会不定时更新.如有需要请尊重原创注明转发!谢谢大家支持.

你可能感兴趣的:(linux,运维)