首页 > 系统服务 > 详细

Linux ->> <user_name> not in the sudoers file. This incident will be reported.

时间:2016-01-10 15:29:45      阅读:311      评论:0      收藏:0      [点我收藏+]

昨天在用sudo命令执行mkdir命令的时候发生了错误。错误提示如下:

hadoop@master:/home$ sudo mkdir /home/hadoop
[sudo] password for hadoop: 
hadoop is not in the sudoers file.  This incident will be reported.

 

原因是当前用户没有借用root权限去执行后面命令的权限,默认是只有admin组的成员才有这个权限的。那是在哪设定这个东西的呢?

答案就是visudo命令进入/etc/sudoers文件的编辑模式去设定(需要以root用户)。

添加下面这条记录

<user_name>    ALL=(ALL) ALL

比如:

# User privilege specification
root    ALL=(ALL:ALL) ALL
hadoop ALL=(ALL) ALL

意思让用户hadoop可以取得root权限去做任何事情

 

参考:

How do I add myself into the sudoers group?

Linux ->> <user_name> not in the sudoers file. This incident will be reported.

原文:http://www.cnblogs.com/jenrrychen/p/5118388.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!