Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: How to Lock / UnLock (Enable / Disable) Linux User Account  (Read 2403 times)

0 Members and 1 Guest are viewing this topic.

Haripriya H

  • Guest
How to Lock / UnLock (Enable / Disable) Linux User Account
« on: November 01, 2013, 10:02:20 pm »
Before you remove an account from a system, is a good idea lock it for one week to make sure that no one use it.

To lock, you can use the follow command:

# passwd -l username (where username is the login id).

This option is used to lock the specified account and it is available to root only. The locking is performed by rendering the encrypted password into an invalid string (by prefixing the encrypted string with an !).

After that, if someone try to loginusing this account, the system will return:

# su - username

This account is currently not available.

To Unlock the same account

Following command re-enables an account by changing the password back to its previous value i.e. to value before using -l option.

# passwd -u username

This removes the '!' in front of the encrypted password