Azure Linux如何启用root用户登录
Azure 里的 linux 模板应该是通过了 sshd_config 文件禁用了 Root 登陆,我们只需重新开启即可。sudo suvi /etc/ssh/sshd_config# 在 sshd_config 文件里的 “Authentication” 部分加上以下内容PermitRootLogin yes# 完成以后退出 vi 并保存service sshd restart # 重启 ssh
·
Azure 里的 linux 模板应该是通过了 sshd_config 文件禁用了 Root 登陆,我们只需重新开启即可。
sudo su
vi /etc/ssh/sshd_config
# 在 sshd_config 文件里的 “Authentication” 部分加上以下内容
PermitRootLogin yes
# 完成以后退出 vi 并保存
service sshd restart # 重启 ssh 服务以应用更改
passwd root # 直接修改 Root 用户的密码
这样重新登陆 ssh 就可以用 Root 登陆了。
更多推荐
已为社区贡献2条内容
所有评论(0)