Linux中出现 xxx is not in the sudoers file.This incident will be reported.

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

2.分析
该问题的根本原因是由于Linux的超级用户权限是由sudo动态赋予的,在新增的用户不会默认赋予sudo权力,因此若需要该用户有sudo的权限,需要根据一定的规则进行赋予。

3.解决方法
以下两种方法都是基于现有的用户能够获取root权限进行,不管是root用户本身还是用户A(用户A能够使用sudo)

3.1 手动修改
1.赋予sudoer文件写权限

sudo chmod u+w /etc/sudoers

2.编辑sudoers文件,给对应的用户添加sudo权限

sudo vi /etc/sudoers

找到如下并参照书写,这里以给用户A添加sudo权限:

root    ALL=(ALL:ALL) ALL

添加

A    ALL=(ALL:ALL) ALL
 

3.撤销sudoers的写权限(否则异常)

sudo chmod u-w /etc/sudoers

你可能感兴趣的:(Linux,服务器,linux,运维)