CentOS7添加/删除用户和用户组

Posted 6j2b2

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7添加/删除用户和用户组相关的知识,希望对你有一定的参考价值。

要在root用户下使用

1.新建用户 

adduser testuser //新建testuser 用户 
passwd testuser //给testuser 用户设置密码

2.建工作组 
groupadd testgroup //新建test工作组

3.新建用户同时增加工作组 
useradd -g testgroup testuser //新建testuser用户并增加到testgroup工作组

//注::-g 所属组 -d 家目录 -s 所用的SHELL

4.给已有的用户增加工作组 
usermod -G groupname username

5.临时关闭 
在/etc/shadow文件中属于该用户的行的第二个字段(密码)前面加上就可以了。想恢复该用户,去掉即可 
//或者使用如下命令关闭用户账号: 
passwd testuser –l 
//重新释放: 
passwd testuser –u

6.永久性删除用户账号 
userdel testuser 
groupdel testgroup 
usermod –G testgroup testuser //(强制删除该用户的主目录和主目录下的所有文件和子目录)

7.显示用户信息 
id user 
cat /etc/passwd

补充:查看用户和用户组的方法 
用户列表文件:/etc/passwd 
用户组列表文件:/etc/group 
查看系统中有哪些用户:cut -d : -f 1 /etc/passwd 
查看可以登录系统的用户:cat /etc/passwd | grep -v /sbin/nologin | cut -d : -f 1 
查看用户操作:w命令(需要root权限) 
查看某一用户:w 用户名 
查看登录用户:who 
查看用户登录历史记录:last

以上是关于CentOS7添加/删除用户和用户组的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7下编写创建用户,删除用户脚本

sh CentOS7:删除未使用的用户

CentOS7 从管理员组中 新增/删除用户

Linux添加/删除用户和用户组

3linux用户和用户组的添加和删除

Linux添加/删除用户和用户组