Ubuntu 16.04 设置允许 root 登录

悠扬的幻想天空 - 博客

December 3, 2018 日常 • 作者:悠扬

由于腾讯云主机 ubuntu 系统默认用户名为ubuntu,故修改为允许root用户登录。

修改root密码

ubuntu@VM-0-14-ubuntu:~$ sudo passwd root

Enter new UNIX password: 
Retype new UNIX password: 
passwd: password updated successfully

修改ssh配置

sudo vi /etc/ssh/sshd_config

找到 PermitRootLogin 这项 将其改为 yes

# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes

保存退出

重启ssh服务

sudo service ssh  restart

现在就可以使用 root 登陆了


添加新评论