增加root用户密码 sudo passwd root
切换到root用户 su root
修改sshd vim /etc/ssh/sshd_config
进入编辑模式 i
修改PermitRootLogin prohibit-password为PermitRootLogin yes
#LoginGraceTime 2m
#PermitRootLogin prohibit-password
PermitRootLogin yes
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10
退出并保存vim 按Esc键 输入:WQ

重启sshd
systemctl restart ssh