linux下sudo报错
复现
[up@localhost Downloads]$ sudo groupadd docker
[sudo] password for up:
up is not in the sudoers file. This incident will be reported.
原因
暂未找到
解决方案
- 切换到root用户
su root
-
编辑
/etc/sudoers
vim /etc/sudoers 在以下内容下加入一行 ## Allow root to run any commands anywhere root ALL=(ALL) ALL
# 新增内容如下,选其一即可: youuser ALL=(ALL) ALL # 允许 用户 youuser执行sudo命令(需要输入密码) %youuser ALL=(ALL) ALL # 允许 用户组 youuser里面的用户执行sudo命令(需要输入密码) youuser ALL=(ALL) NOPASSWD: ALL # sudo时不需要输入密码,不建议 %youuser ALL=(ALL) NOPASSWD: ALL # sudo时不需要输入密码,不建议