美文网首页
Ubuntu 启用 root 账号

Ubuntu 启用 root 账号

作者: FlintyLemming | 来源:发表于2020-03-15 15:13 被阅读0次
    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

    相关文章

      网友评论

          本文标题:Ubuntu 启用 root 账号

          本文链接:https://www.haomeiwen.com/subject/xridehtx.html