红联Linux门户
Linux帮助

ubuntu下允许root用户ssh远程登录

发布时间:2016-07-08 11:18:27来源:linux网站作者:貳_进制
SSH服务器,可以通过SSH协议来访问远程服务器,代替telnet和ftp。但是ubuntu默认是不启用root用户也不允许root远程登录的。所以需要先启用root用户:
启用root用户:$ sudopasswdroot      //修改密码后就启用了。
 
安装OpenSSH server:
 
1.使用apt命令安装openssh server
$ sudo apt-getinstall openssh-server
 
2.可以对 openssh server进行配置
$ sudo vim/etc/ssh/sshd_config
找到PermitRootLogin no一行,改为PermitRootLogin yes
 
3.重启 openssh server
$ sudo servicessh restart
 
4.客户端如果是ubuntu的话,则已经安装好sshclient,可以用下面的命令连接远程服务器。
$ ssh192.168.1.2
如果是windows系统的话,可以使用SSH SecureShell等ssh软件进行远程连接。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/22180.html