浏览文章

文章信息

linux下进入root用户登录设置流程 linux修改密码登录 16696

1.root权限登录服务器:


方便开发人员进行项目开发部署,一般购买的服务器为了安全都是不允许直接用root登录的,不过在开发过程中,不使用root账号开发是一件极为痛苦的事。


 2.修改 root 密码 

 sudo passwd root

3.修改配置文件 

 sudo vim /etc/ssh/sshd_config

找到下面相关配置:  

# Authentication:
LoginGraceTime 120 
PermitRootLogin prohibit-password 
StrictModes yes 
PasswordAuthentication no

更改为: 

# Authentication:
LoginGraceTime 120 
# PermitRootLogin prohibit-password 
PermitRootLogin yes 
StrictModes yes 
PasswordAuthentication yes

 4.重启

sudo service ssh restart 
$ sudo vi /etc/ssh/sshd_config 
#PermitRootLogin prohibit-password 
PermitRootLogin yes 
$ sudo passwd root 
$ sudo service ssh restart


 注意:root登录一般不推荐!仅在开发时使用。


原创