Swollen

导航

Ubuntu允许root用户登录

Ubuntu允许root用户登录

由于ubuntu默认不允许root用户远程登录,则需要以下设置:

  1. 以普通用户登录到目标服务器

    ssh <User Name>@<IP Address>
    
  2. 切换到root用户并设置密码

    sudo -i
    
    passwd
    
  3. 编辑配置文件/etc/ssh/sshd_confg允许root用户远程登录

    vim /etc/ssh/sshd_config
    ...
    PermitRootLogin yes
    ...
    
  4. 重启sshd​服务

    systemctl status sshd.service
    
    systemctl restart sshd.service
    
    systemctl status sshd.service
    

posted on 2022-11-20 04:21  Swollen_D  阅读(236)  评论(0编辑  收藏  举报