欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

腾讯云主机ubuntu系统,设置允许root用户登录

程序员文章站 2022-03-04 08:41:38
...

由于腾讯云主机ubuntu系统默认用户名为ubuntu,开启root用户登录如下:

  1. 修改root密码
sudo passwd root
Enter new UNIX password: // 输入新密码
Retype new UNIX password: // 重复密码
passwd: password updated successfully // 修改成功
  1. 修改sshd_config配置如下
vi /etc/ssh/sshd_config
# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
  1. 最后重启下ssh
sudo service ssh   restart