一、基础环境
CentOS 7.9
二、用户管理
1. 添加用户:
adduser tester
2. 为用户创建密码:
passwd tester
3. 为用户添加授权:
(1) 首先找到/etc/sudoers文件并进入编辑模式:
vi /etc/sudoers
如无法操作则需要添加写权限:
chmod 640 /etc/sudoers
取消写权限为:
chmod 440 /etc/sudoers
(2) 添加用户及权限:
进入sudoers文件后,找到下面行:
## Allow root to run any commands anywhere root ALL=(ALL) ALL
在该行下添加:
tester ALL=(ALL) ALL #允许tester执行sudo命令,需要输入密码;
%tester ALL=(ALL) ALL #允许tester用户组执行sudo命令,需要输入密码;
tester ALL=(ALL) NOPASSWD: ALL #允许tester执行sudo命令,不需要输入密码;
%tester ALL=(ALL) NOPASSWD: ALL #允许tester用户组执行sudo命令,不需要输入密码;
4. 删除用户
userdel -r tester
-r 表示删除用户登入目录以及目录中所有文件。
标签:sudo,CentOS,tester,sudoers,管理,用户,etc,添加,账户 From: https://www.cnblogs.com/eagle6688/p/16928156.html