码迷,mamicode.com
首页 > 系统相关 > 详细

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

时间:2016-01-10 15:32:37      阅读:181      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!