linux添加用户sudo到root设置

1、chmod u+w /etc/sudoers   --给予这个文件可读权限
2、vi /etc/sudoers          --编辑该文件
3、在文件末尾添加如下信息:
  User_Alias APP = manager
  APP        ALL=(ALL)        NOPASSWD: ALL
  Defaults logfile=/var/log/sudo.log
  Defaults !syslog
4、chmod u-w /etc/sudoers   --取消该文件的可读权限

搞定,使用manager用户登录,然后执行 sudo -i 命令,是不是切换到root下了呢


本文出自 “tenjhon” 博客,转载请与作者联系!

linux添加用户sudo到root设置,布布扣,bubuko.com

linux添加用户sudo到root设置

上一篇:.net core ef 读取mysql json字段过程记录


下一篇:8、SpringBoot整合之SpringBoot整合MongoDB