使用XShell4连接虚拟机,以root账户登录,输入密码时服务器拒绝:
sshd的设置不允许root用户用密码远程登录
修改 vim /etc/ssh/sshd_config
找到# Authentication:
LoginGraceTime 120
PermitRootLogin without passwd
StrictModes yes
改成
# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
重启虚拟机。
文本传输xshell的安装及配置:http://www.linuxdiyf.com/linux/14835.html
Xshell实现Windows上传文件到Linux主机:http://www.linuxdiyf.com/linux/12334.html
使用Xshell密钥认证机制远程登录Linux:http://www.linuxdiyf.com/linux/9585.html
Windows下使用xShell向远程Linux上传文件:http://www.linuxdiyf.com/linux/2803.html
Xshell用ssh连接Ubuntu掉线解决方法:http://www.linuxdiyf.com/linux/1392.html