美文网首页
root登陆

root登陆

作者: JXeddy | 来源:发表于2018-05-16 02:35 被阅读0次
  1. 修改 root 密码

sudo passwd root

  1. 以其他账户登录,通过 sudo nano 修改 /etc/ssh/sshd_config :

xxx@ubuntu14:~$ su - root
Password:
root@ubuntu14:~# vi /etc/ssh/sshd_config

  1. 注释掉 #PermitRootLogin without-password,添加 PermitRootLogin ye

Authentication:

LoginGraceTime 120

PermitRootLogin without-password

PermitRootLogin yes
StrictModes yes

  1. 重启 ssh 服务

root@ubuntu14:~# sudo service ssh restart
ssh stop/waiting
ssh start/running, process 1499
root@ubuntu14:~#

ubuntu有以下方式切换到root身份。

  1. sudo+命令,输入当前用户密码后以root权限执行命令,有时间限制且仅限当前命令。

  2. sudo -i,输入当前用户密码后以root权限登录shell,无时间限制。使用exit或logout退出。

  3. su,输入root账户的密码后切换到root身份,无时间限制。su 用户名切换回其它用户。

  4. sudo su,效果同su,只是不需要root的密码,而需要当前用户的密码。

相关文章

网友评论

      本文标题:root登陆

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