CentOS执行sudo提示xxx is not in the sudoers file

文章发布地址:
https://abelsu7.top/2018/05/09/not-in-the-sudoers-file/
作者:苏易北,转载请注明原文链接

在新安装的CentOS系统中,使用默认创建的用户执行sudo命令时终端报错:

xxx is not in the sudoers file. This incident will be reported.

报错原因

CentOS默认创建的用户并没有sudo命令的执行权限,而且CentOS中也并不存在sudo用户组。

不同于CentOSUbuntu在安装后默认创建的用户属于sudo用户组,因此可以使用sudo命令。

/etc/sudoers 文件简介

错误信息中提到的sudoers file位于/etc/sudoersroot用户使用visudo命令可对其进行查看,最开始的文件介绍内容如下:

## Sudoers allows particular users to run various commands as
## the root user, without needing the root password.
##
## Examples are provided at the bottom of the file for collections
## of related commands, which can then be delegated out to particular
## users or groups.
## 
## This file must be edited with the `visudo` command.

概括来说,sudoers文件允许指定用户在运行命令时获取root权限无需输入root密码

根据最后一行,必须通过visudo命令来对/etc/sudoers文件进行编辑,该命令需要root权限

sudoers文件可对多种类型的命令权限及用户组权限进行授权,预设的命令包括网络管理软件安装与管理服务管理数据库升级存储管理权限代理进程管理驱动管理等,预设的命令如下:

## Networking
# Cmnd_Alias NETWORKING = /sbin/route, /sbin/ifconfig, /bin/ping, /sbin/dhclient, /usr/bin/net, /sbin/iptables, /usr/bin/rfcomm, /usr/bin/wvdial, /sbin/iwconfig, /sbin/mii-tool

## Installation and management of software
# Cmnd_Alias SOFTWARE = /bin/rom, /usr/bin/up2date, /usr/bin/yum

## Services
# Cmnd_Alias SERVICES = /sbin/service, /sbin/chkconfig

## Updating the locate database
# Cmnd_Alias LOCATE = /usr/bin/updatedb

## Storage
# Cmnd_Alias STORAGE = /sbin/fdisk, /sbin/sfdisk, /sbin/parted, /sbin/partprobe, /bin/mount, /bin/umount

## Delegating permissions
# Cmnd_Alias DELEGATING = /usr/sbin/visudo, /bin/chown, /bin/chmod, /bin/chgrp

## Processes
# Cmnd_Alias PROCESSES = /bin/nice, /bin/kill, /usr/bin/kill, /usr/bin/killall

## Drivers
# Cmnd_Alias DRIVERS = /sbin/modprobe

解决办法

首先使用root用户运行visudo命令,打开/etc/sudoers文件,找到如下所示的片段:

## Next comes the main part: which users can run what software on
## which machines (the sudoers file can be shared between multiple systems).
## Syntax:
##
##      user    MACHINE=COMMANDS
##
## The COMMANDS section may have other options added to it.
##
## Allow root to run any commands anywhere
root    ALL=(ALL)       ALL

以及

## Allow people in group wheel to run all commands
# %wheel ALL=(ALL)       ALL

## Same thing without a password
# %wheel ALL=(ALL)       NOPASSWD: ALL

可知有两种方法可让指定用户获取sudo权限。

1. 直接给指定用户授权

查阅网上相关博客,大多是基于此方法。例如用户名为test,直接给test用户授权,只需在root用户的授权定义下添加相同的授权定义,将用户名改为test

## Allow root to run any commands anywhere
root    ALL=(ALL)       ALL
## Allow test to run any commands anywhere
test    ALL=(ALL)       ALL

这种方法虽然简单却也比较极端:例如将test用户删除后忘记删除sudoers中的授权,之后再次新建同名账户的话,test用户就直接获得了sudo权限,存在安全隐患;而且每次新建用户后都需要再次添加授权定义,操作很麻烦,因此推荐使用下面的方法。

2. 将指定用户加入wheel用户组

可以注意到,在sudoers文件中可对wheel用户组整体授权,因此可先将用户test加入用户组wheel中:

$ su - root
$ usermod -G wheel test

之后通过visudo命令在sudoers文件中对wheel用户组进行授权,分为需要密码无需密码两种方式,取消掉任意一种授权前面的注释即可:

## Allow people in group wheel to run all commands
%wheel ALL=(ALL)       ALL

## Same thing without a password
# %wheel ALL=(ALL)       NOPASSWD: ALL

保存文件并退出,问题解决。

测试一下

首先创建用户test,并设置用户密码:

[root@centos ~]$ useradd test
[root@centos ~]$ id test
uid=502(test) gid=502(test) groups=502(test)
[root@centos ~]$ groups test
test : test
[root@centos ~]$ passwd test

切换至test用户,尝试运行sudo visudo命令,提示无sudo权限:

[root@centos ~]$ su - test
[test@centos ~]$ sudo visudo
test is not in the sudoers file.  This incident will be reported.

切换回root用户,将test加入wheel用户组,再次尝试使用test用户运行sudo visudo命令,成功执行,问题解决!

[test@centos ~]$ su - root
[root@centos ~]$ usermod -G wheel test
[root@centos ~]$ id test
uid=502(test) gid=502(test) groups=502(test),10(wheel)
[root@centos ~]$ groups test
test : test wheel 
[root@centos ~]$ su - test
[test@centos ~]$ sudo visudo

参考文章

  1. Linux配置之解决CentOS中:xx is not in the sudoers file的问题 | CSDN
  2. is not in the sudoers file 解决(转) | CSDN
  3. 使用sudo时user is not in sudoers file的解决 | CSDN
  4. user is not in the sudoers file. This incident will be reported. | StackOverflow
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,324评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,356评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,328评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,147评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,160评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,115评论 1 296
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,025评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,867评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,307评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,528评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,688评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,409评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,001评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,657评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,811评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,685评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,573评论 2 353

推荐阅读更多精彩内容