LINUX服务器设置只允许密钥登陆
- 首先需要修改一些配置文件
[root@web-0001 ~]# vim /etc/ssh/sshd_config
- 进入sshd_config文件后需要更改几个地方
PubkeyAuthentication yes # 启用公告密钥配对认证方式
RSAAuthentication yes # 允许RSA密钥
PasswordAuthentication no # 禁止密码验证登录,如果启用的话,RSA认证登录就没有意义了
PermitRootLogin no # 禁用root账户登录,非必要,但为了安全性,请配置
- 然后保存配置,重新启动服务
[root@web-0001 ~]# service sshd restart