linux系统用户锁定与解锁
Posted 长城之上是千亿的星空,星空之上是不灭的守望。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux系统用户锁定与解锁相关的知识,希望对你有一定的参考价值。
1、使用passwd命令锁定与解锁账号
[root@rhel7 ~]# passwd -l testuser --- -l 锁定
Locking password for user testuser.
passwd: Success
[root@rhel7 ~]# passwd -S testuser --- 查看状态
testuser LK 2016-06-20 0 99999 7 -1 (Password locked.)
[root@rhel7 ~]#
[root@rhel7 ~]# passwd -u testuser --- 解锁
Unlocking password for user testuser.
passwd: Success
[root@rhel7 ~]# passwd -S testuser
testuser PS 2016-06-20 0 99999 7 -1 (Password set, SHA512 crypt.)
2、使用usermod命令锁定与解锁账号
[root@rhel7 ~]# usermod -L testuser
[root@rhel7 ~]# passwd -S testuser
testuser LK 2016-06-20 0 99999 7 -1 (Password locked.)
[root@rhel7 ~]# usermod -U testuser
[root@rhel7 ~]# passwd -S testuser
testuser PS 2016-06-20 0 99999 7 -1 (Password set, SHA512 crypt.)
[root@rhel7 ~]#
以上是关于linux系统用户锁定与解锁的主要内容,如果未能解决你的问题,请参考以下文章