gpasswd命令是Linux下工作组文件/etc/group和/etc/gshadow的管理工具 ,系统管理员可以使用-a选项定义组管理员,使用-m选项定义成员,由组管理员用组名调用的gpasswd只提示输入组的新密码。
**语法格式:** gpasswd [参数]
**常用参数:**
| -a | 添加用户到组 |
| ---- | ------------------------------------------------------ |
| -d | 从组删除用户 |
| -A | 指定管理员 |
| -M | 指定组成员和-A的用途差不多 |
| -r | 删除密码 |
| -R | 限制用户登入组,只有组中的成员才可以用newgrp加入该组 |
**参考实例**
使用-a参数把redis用户添加到linuxcool用户组:
```
[root@anycode ~]# gpasswd -a redis linuxcool
Adding user redis to group linuxcool
```
显示上面使用-a参数添加用户到组用信息:
```
[root@anycode ~]# more /etc/group|grep linuxcool
linuxcool:x:1005:redis
```
使用-d参数从linuxcool组中删除redis用户:
```
[root@anycode ~]# gpasswd -d redis linuxcool
Removing user redis from group linuxcool
```
显示linuxcool组用的redis用户是否删除成功:
```
[root@anycode ~]# more /etc/group|grep linuxcool
linuxcool:x:1005:
```