腾讯云主机ubuntu系统,设置允许root用户登录
程序员文章站
2022-03-04 08:41:38
...
由于腾讯云主机ubuntu
系统默认用户名为ubuntu
,开启root
用户登录如下:
- 修改
root
密码
sudo passwd root
Enter new UNIX password: // 输入新密码
Retype new UNIX password: // 重复密码
passwd: password updated successfully // 修改成功
- 修改
sshd_config
配置如下
vi /etc/ssh/sshd_config
# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
- 最后重启下
ssh
sudo service ssh restart
下一篇: ubuntu服务器允许Root用户登录