服务器被入侵之后往往只能通过关闭ssh使用密码方式登陆 ,此教程就是针对此类问题整理的解决方案,适用于香港云服务器、香港服务器等。
1、登陆到服务器内,执行以下命令:
vi /etc/ssh/sshd_config
找到#PasswordAuthentication yes
去掉前方#号,并将PasswordAuthentication yes修改为PasswordAuthentication no。
2、重启sshd使其生效。
Centos6:service sshd restart
Centos7:systemctl restart sshd
3、打开ssh连接工具进行连接,输入用户名后弹出验证框“Password(P)”方式不可用,默认则为“Public Key(U)”方式,说明已成功禁用SSH密码方式登陆。