侧边栏壁纸
博主头像
怪客のBlog 博主等级

行动起来,活在当下

  • 累计撰写 35 篇文章
  • 累计创建 1 个标签
  • 累计收到 1 条评论

目 录CONTENT

文章目录

ubuntu20开启root登录ssh

怪客
2023-02-05 / 0 评论 / 0 点赞 / 167 阅读 / 0 字

1.给root用户设置密码

sudo passwd root

2.修改sshd配置文件

sudo vim /etc/ssh/sshd_config

修改

PermitRootLogin yes
PasswordAuthentication yes

把 PermitRootLogin without-password 或者 PermitRootLogin prohibit-password 改为 PermitRootLogin yes,注意PermitRootLogin without-password可能被注释掉了,要去掉注释
把 PasswordAuthentication no改为PasswordAuthentication yes

解读一下这两句话吧!
PermitRootLogin yes
允许root登录,设为yes。
PermitRootLogin prohibit-password
允许root登录,但是禁止root用密码登录

3.重启服务

sudo systemctl restart sshd
0

评论区