Ubuntu Server 14.04 下root无法ssh登陆
1.修改root密码
#如果无法修改密码需要执行以下命令
sudomount-rw-oremount/
sudopasswdroot
2.以其他账户登录,通过sudonano修改/etc/ssh/sshd_config:
xxx@ubuntu14:~$su-root
Password:
root@ubuntu14:~#vi/etc/ssh/sshd_config
3.注释掉#PermitRootLoginwithout-password,添加PermitRootLoginye
#Authentication:
LoginGraceTime120
#PermitRootLoginwithout-password
PermitRootLoginyes
StrictModesyes
4.重启ssh服务
root@ubuntu14:~#sudoservicesshrestart
sshstop/waiting
sshstart/running,process1499
root@ubuntu14:~#