描述:
Ubuntu 系统的默认用户名是 ubuntu,并在安装过程中默认不设置 root 帐户和密码。如有需要,可
在设置中开启允许 root 用户登录。
Root用户设置密码:
1.使用 ubuntu 帐户通过ssh登录服务器。
2.执行以下命令,设置 root 密码。
sudo passwd root
3.输入 root 的密码,按 Enter。
4.重复输入 root 的密码,按 Enter。
返回如下信息,即表示 root 密码设置成功。
passwd: password updated successfully
Root用户开启ssh远程登录:
1.将用户和Shell环境一起切换成root身份。
su - root
2.编辑sshd_config文件。
vi /etc/ssh/sshd_config
3.修改配置。
默认的Authentication区块
# Authentication:
#LoginGraceTime 2m
#PermitRootLogin prohibit-password
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10
修改为以下
# Authentication:
LoginGraceTime 120
#PermitRootLogin prohibit-password
PermitRootLogin yes
StrictModes yes
#MaxAuthTries 6
#MaxSessions 10
4.重启SSH服务。
systemctl restart sshd.service
THE END