ubuntu server 16.04 开启root密码登录

2019-03-01 10:11:51来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

0x00 ubuntu server 16.04 开启root密码登录

由于众多VPS默认使用证书验证登录,虽然安全但使用十分不便,所以特提供开启root用户并使用密码登录方法。

0x01 为root账户设置密码

$ sudo passwd root

0x02 进入root账户

$ su root

0x03 编辑sshd_config文件

$ vi /etc/ssh/sshd_config
做如下修改:

1.允许root账户登录
PermitRootLogin without-password
~修改为~
PermitRootLogin yes

2.允许密码登录
PasswordAuthentication no
~修改为~
PasswordAuthentication yes

3.关闭证书验证登录(::确认可以使用密码登录后再做此修改,避免发生无法登录服务器的验证后果::)
UsePAM yes
~修改为~
UsePAM no

0x04 重启sshd服务

$ sudo service ssh restart

本文转载自http://kiros.onbeta.com/Linux/ubuntu-server-1604-kai-qiroot-mi-ma-deng-lu.html


原文链接:https://www.cnblogs.com/kiroshan/p/ubuntu-server-1604-kai-qiroot-mi-ma-deng-lu.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Docker存储卷(V18.X)

下一篇:Linux环境中配置环境变量无效