首页 > 代码库 > Xshell使用root用户连接Ubuntu14.04时,提示SSH服务器拒绝了密码,请再试一次

Xshell使用root用户连接Ubuntu14.04时,提示SSH服务器拒绝了密码,请再试一次

 

  今天,新安装的服务器Ubuntu14.04使用root用户连接时一直提示连接不上,使用其他普通用户则没有问题,后来了解到是ssh配置文件问题导致的。


技术分享

修改:

vim /etc/ssh/sshd_config


找到: 

# Authenticaton

LoginGraceTime 120

PremitRootLogin without passwd

StrictModes yes


修改为:

# Authenticaton

LoginGraceTime 120

PremitRootLogin yes

StrictModes yes


然后重启ssh服务:

# /etc/init.d/ssh restart


此时使用root用户远程登录就没问题了。



本文出自 “yangbin” 博客,请务必保留此出处http://13683137989.blog.51cto.com/9636221/1949313

Xshell使用root用户连接Ubuntu14.04时,提示SSH服务器拒绝了密码,请再试一次