系统相关
首页 > 系统相关> > linux系统用户锁定与解锁

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 ~]#   

标签:99999,rhel7,06,testuser,passwd,解锁,linux,锁定,root
来源: https://www.cnblogs.com/liang545621/p/12611486.html