通过修改ubuntu 14.04种ssh默认配置文件来实现ssh+root远程登录功能。
ubuntu 14.04默认安装后无法通过ssh+root方式远程登录,其原因在于ubuntu ssh配置文件中关于RootLogin的配置方式有问题,因此需要修改一下该配置方式即可。
使用文本编辑器(如:vim)打开/etc/ssh/sshd_config配置文件,找到该文件中包含PermitRootLogin的一行,该行默认值是without-password。将该行修改为PermitRootLogin yes即可。
编辑完配置文件后重新启动ssh服务即可,即:#restart ssh。
此时就可以使用ssh+root进行远程登录了。
ubuntu15.04开启root登陆:http://www.linuxdiyf.com/linux/12926.html
让Ubuntu Kylin能使用root登陆的方法:http://www.linuxdiyf.com/linux/9967.html
Fedora23的SSH服务:http://www.linuxdiyf.com/linux/16637.html
ubuntu下安装、启动和卸载SSH:http://www.linuxdiyf.com/linux/15380.html