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

ubuntu系统云服务器切换root用户登录

程序员文章站 2022-06-05 18:35:18
...

1. 默认用户登录(如,ubuntu)

2. 设置root用户密码

sudo passwd root

输入密码, 再重复确认输入一次

3. 允许root远程登录

sudo vi /etc/ssh/sshd_config

将PermitRootLogin 置为yes

# Authentication:
LoginGraceTime 120
# PermitRootLogin prohibit-password
PermitRootLogin yes
StrictModes yes

保存退出.

4. 重启ssh服务

sudo service ssh restart

5. 使用mobaxterm等远程桌面以root身份登录