为 Ubuntu 16.04 为 root 帐号开启 SSH 登录

  1. 修改 root 密码

    ubuntu@VM-46-251-ubuntu:~$ sudo passwd root
    Enter new UNIX password:
    Retype new UNIX password:
    passwd: password updated successfully
  2. sudo 权限修改 /etc/ssh/sshd_config

    ubuntu@VM-46-251-ubuntu:~$ su
    Password:
    root@VM-46-251-ubuntu:/home/ubuntu#
    root@VM-46-251-ubuntu:/home/ubuntu# vi /etc/ssh/sshd_config

    然后进入 sshd_config 中,/为查找命令,找到 PermitRootLogin prohibit-password# 注释掉
    紧接着加入 PermitRootLogin yes,方法为 i 进入编辑模式,加入设置,:wq 写入退出

  3. 重启 SSH 服务,使配置生效

    root@VM-46-251-ubuntu:/home/ubuntu# service ssh restart

Done.

为没使用过 Linux 的同学推荐 TLCL

添加新评论