http://jingyan.baidu.com/article/9c69d48fb9fd7b13c8024e6b.html
【winscp连接被拒绝解决怎么办?】
http://www.didown.com/news/19460_2.html
用winscp的root连接ubuntu“拒绝访问”的解决方法。ubuntu 服务器默认的root账号是没有激活的,需要用初装的用户账号给root设置管理密码:
user@ubuntu12:~$ sudo passwd root //用sudo修改root帐户
Password: //输入密码
Enter new UNIX password: //提示输入新的root帐户密码
Retype new UNIX password: //再输入一次确认密码
修改成功之后你就可以使用root账号了,可以使用su root 命令切换到root。
安装 sshd
但是碰到过一次情况,就是修改之后,直接用root账号无法登陆远程终端,这是还需要修改ssh配置文件:
# Authentication:
LoginGraceTime 120
PermitRootLogin without-password
StrictModes yes
# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
重启重启 使之生效