[Solution] Cannot lock /etc/passwd; try again later – Useradd Error

Last updated: October 24, 2022

Sometimes in Linux when adding a user using the useradd command it throws the error 'Cannot lock /etc/passwd; try again later' as shown below:

#useradd test
useradd: cannot lock /etc/passwd; try again later

Answer:

The system files that are related to Linux user management are,

/etc/passwd : Contains user account information
/etc/shadow: Contains secured account information (encrypted password)
/etc/group : Contains group account Information
/etc/gshadow : Contains secured group information (encrypted group password)

When you create or modify a user, some lock files will get created to prevent concurrent modification of these system files. The lock files are,

/etc/passwd.lock
/etc/shadow.lock
/etc/group.lock
/etc/gshadow.lock

These files should get automatically removed once the command useradd or usermod finishes. Sometimes, you may encounter situations (bugs) where some of these files may not get properly unlocked after the execution of the command. In that case, when you execute useradd next time, it may show the error 'cannot lock /etc/password' or 'unable to lock group file'. So, if you get any such errors, check for any lock files under /etc.

# cd /etc
# ls –l *.lock

If you find any lock files named passwd.lock, shadow.lock, group.lock or gshadow.lock, remove it.

# rm –rf /etc/passwd.lock
# rm –rf /etc/shadow.lock
# rm –rf /etc/group.lock
# rm –rf /etc/gshadow.lock

Now, you should be able to execute useradd without any errors. You should also ensure that your file system has not gone into read-only mode. That will definitely cause an issue.

About The Author

Bobbin Zachariah

Bobbin Zachariah

Bobbin started his career in IT in the year 2000 as a computer science instructor and worked as a Linux system engineer and senior analyst roles. Currently working in DevOps environments to increase efficiency and improve delivery time in AWS Cloud infrastructure. He is certified in RHEL, CCNA, and MCP and holds a Masters's in computer science. When in his free time love playing cricket, blogging, and listening to music.

SHARE

Comments

Please add comments below to provide the author your ideas, appreciation and feedback.

Leave a Reply

Leave a Comment