Ubuntu 启用 root 账号

2020-03-15  本文已影响0人  FlintyLemming
  1. 正常通过ssh连接

  2. 创建root账号的密码

     sudo passwd root
    
  3. 输入密码,无回显,输入两遍

  4. 进入 root 账号

     su root
    
  5. 修改 PasswordAuthentication

     vim /etc/ssh/sshd_config
    

    找到 PasswordAuthentication no,把no改成yes。

  6. 重新启动下sshd服务

     sudo service sshd restart
    
  7. 修改sshd配置文件

     vi /etc/ssh/sshd_config
    

    PermitRootLogin xxxxx 改为 PermitRootLogin yes,如果这一项被注释掉了,去掉前面的#

    PasswordAuthentication no 改为PasswordAuthentication yes

    UsePAM yes改为UsePAM no

上一篇下一篇

猜你喜欢

热点阅读