centos7 ssh 设置key认证
Posted juandx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 ssh 设置key认证相关的知识,希望对你有一定的参考价值。
vi /etc/ssh/sshd_config
查找RSAAuthentication、StrictModes、PubkeyAuthentication、AuthorizedKeysFile把所在行修改为:
RSAAuthentication yes StrictModes no PubkeyAuthentication yes AuthorizedKeysFile .ssh/authorized_keys
重启SSH服务
systemctl restart sshd.service
然后用xshell或者linux自己的keygen生成私钥和公钥,把公钥拷贝到/root/.ssh/authorized_keys即可
以上是关于centos7 ssh 设置key认证的主要内容,如果未能解决你的问题,请参考以下文章