红联Linux门户
Linux帮助

Ubuntu 14.04为root帐号开启SSH登录

发布时间:2016-01-15 15:59:35来源:linux网站作者:云淡风

1.修改 root 密码

sudo passwd root


2.以其他账户登录,通过 sudo nano 修改 /etc/ssh/sshd_config :

xxx@ubuntu14:~$ su - root
Password:
root@ubuntu14:~# vi /etc/ssh/sshd_config


3.注释掉 #PermitRootLogin without-password,添加 PermitRootLogin ye

# Authentication:
LoginGraceTime 120
#PermitRootLogin without-password
PermitRootLogin yes
StrictModes yes


4.重启 ssh 服务

root@ubuntu14:~# sudo service ssh restart
ssh stop/waiting
ssh start/running, process 1499
root@ubuntu14:~#


Linux下使用ssh登录局域网其他电脑的方法:http://www.linuxdiyf.com/linux/14904.html

Linux主机如何用ssh去登录docker容器的步骤:http://www.linuxdiyf.com/linux/14643.html

在Ubuntu 12.04安装和设置SSH服务:http://www.linuxdiyf.com/linux/14551.html

ubuntu允许远程ssh登录:http://www.linuxdiyf.com/linux/14055.html

mosh:一个基于SSH用于连接远程Unix/Linux系统的工具:http://www.linuxdiyf.com/linux/14333.html