user is not in the sudoers file.

场景:
    在CentOS中创建了一个新用户user,在调用sudo命令时,报:“user is not in the sudoers file. This incident will be reported” 错误,无法执行sudo命令。

分析:
    在ubuntu中由于禁用了root用户,默认情况下会把安装系统时建立的用户添加到sudoers中。但在redhat和centos中并没有把任何root用户之外的用户默认的添加到sudoers之中。这样我们在执行sudo 命令时就会出现xxx is not in the sudoers file. This incident will be reported.这样的错误输出。现在为了安全起见比较提倡使用普通用户做日常操作,而在需要超级用户的时候使用sudo 来做,这样,我们就有必要把一些用户添加到sudoers之中。

解决:

#chmod u+w /etc/sudoers
#vi /etc/sudoers

在root ALL=(ALL)ALL行下添加XXX ALL=(ALL)ALL,XXX为你的用户名

#chmod u-w /etc/sudoers




你可能感兴趣的:(user is not in the sudoers file.)