- 修改 root 密码
sudo passwd root
- 以其他账户登录,通过vi修改 /etc/ssh/sshd_config :
server@ubuntu:~$ su root
Password:
root@ubuntu:~# vi /etc/ssh/sshd_config
3.修改PermitRootLogin without-passwor 为 PermitRootLogin yes
- 重启 ssh 服务
root@ubuntu:~# service ssh restart
ssh stop/waiting
ssh start/running, process 1499
root@ubuntu:~#
操作完成,然后重新通过root连接就可以。