- 设置 root 用户密码
$ sudo passwd root
可设置跟 ubuntu 用户一样
- 修改 ssh 配置
/etc/ssh/sshd_config
# sudo vim /etc/ssh/sshd_config
将 PermitRootLogin 改为 yes
#LoginGraceTime 2m
PermitRootLogin yes
#StrictModes yes
- 重启 ssh 服务
$ sudo service ssh restart
$ sudo passwd root
可设置跟 ubuntu 用户一样
/etc/ssh/sshd_config
# sudo vim /etc/ssh/sshd_config
将 PermitRootLogin 改为 yes
#LoginGraceTime 2m
PermitRootLogin yes
#StrictModes yes
$ sudo service ssh restart