-
正常通过ssh连接
-
创建root账号的密码
sudo passwd root
-
输入密码,无回显,输入两遍
-
进入 root 账号
su root
-
修改 PasswordAuthentication
vim /etc/ssh/sshd_config
找到 PasswordAuthentication no,把no改成yes。
-
重新启动下sshd服务
sudo service sshd restart
-
修改sshd配置文件
vi /etc/ssh/sshd_config
PermitRootLogin xxxxx 改为 PermitRootLogin yes,如果这一项被注释掉了,去掉前面的#
PasswordAuthentication no 改为PasswordAuthentication yes
UsePAM yes改为UsePAM no
网友评论