切换Root用户

sudo su

设置密码

passwd root
  • 需要输入两次密码,输入的时候密码不会显示

编辑ssh配置文件

vim /etc/ssh/sshd_config
  • PasswordAuthentication no改为PasswordAuthentication yes
  • PermitRootLogin no改为PermitRootLogin yes

重启sshd

systemctl restart sshd