设置root密码,并切换到root用户
sudo passwd root
su root
修改ssh配置文件
vim /etc/ssh/sshd_config
PasswordAuthentication no 改成 PasswordAuthentication yes
#PermitRootLogin prohibit-password 改成 PermitRootLogin yes
UsePAM yes 改成 UsePAM no
重启sshd.service
systemctl restart sshd.service