CentOS   发布时间:2022-04-02  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了How to fix "'user' is not in sudoers" in CentOS大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

How to fix "'user' is not in sudoers" in CentOS ObsidianBlade  Registered February 2012  in Fedora, RedHat, and CentOS I just ran into this issue, and I'm sure I'm not going to be the last person to d

How to fix "'user' is not in sudoers" in CentOS

I just ran into this issue,and I'm sure I'm not going to be the last person to do so. This is my first tutorial,so I'm hoping I did everything the right way. It's a simple fix,so this is definitely one of the shortest how-to's ever.

First thing (for the way I do it) is to make sure you have nano. If not,log onto the root account and download nano before anything else:

@H_502_29@
sudo yum install nano


With that,it's time to edit the sudoers file to add yourself to it:

@H_502_29@
EDITOR=nano visudo


Now,navigate to the area where it says:

@H_502_29@
## 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

## Allows members of the 'sys' group to run networking,software,## service management apps and more.


And under where it says @H_502_29@
root   ALL=(ALL)     ALL
place the name of the user that you want to give sudo rights to so that it looks something like this:

@H_502_29@
## 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
Chris   ALL=(ALL)	ALL
## Allows members of the 'sys' group to run networking,## service management apps and more.
ctrl-X to exit,y to agree to save it and enter to save the file with the name as it is and you're done!

大佬总结

以上是大佬教程为你收集整理的How to fix "'user' is not in sudoers" in CentOS全部内容,希望文章能够帮你解决How to fix "'user' is not in sudoers" in CentOS所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。