Share on Social Media

In this tutorial, you will learn, how to reset Root Password in CentOS 7 or other Red hat based Linux servers. #centlinux #linux #recovery

Problem Statement

As we know that, the root is the superuser in Linux. We often come to situations, where, the root password is not available. Although it is trivial to reset root password, if you have a user with sudo rights, otherwise it becomes a little tricky.

In this post, I will demonstrate, how to reset root password in CentOS 7.

Read Also: How to reset Root Password in CentOS 6

Recommended Online Training: Learn Bash Shell in Linux for Beginners

745772 0021

Reset Root Password in CentOS 7

To reset root password we must have physical access to the Server machine. Because we have to login into Emergency target.

Reset Root Password in CentOS 7 1
Reset Root Password in CentOS 7 1

Once successfully reach at emergency target, follow the steps below to reset root password.

By default / filesystem is mounted at /sysroot with ro (read only) option in emergency target. We have to change it to rw (read write) mode, so we can change the files in our / filesystem.

Reset Root Password in CentOS 7 2
Reset Root Password in CentOS 7 2

Now, we have our / filesystem in rw mode mounted at /sysroot. Now, we have to chroot to /sysroot directory, so we can execute commands and change files therein.

Reset Root Password in CentOS 7 3
Reset Root Password in CentOS 7 3

We have successfully chroot to our / filesystem. Let’s change root password using passwd command.

Reset root Password 1
Reset root Password 1

This file /.autorelabel is created to notify the SELinux to perform relabelling of all the files in the / filesystem. It is because the passwd command does not update the existing /etc/shadow file, instead it creates a copy and then update the password. Therefore, the newly created file does not has proper SELinux file contexts.

Reset root Password 2
Reset root Password 2

Now, Let the system boot with default settings. System start-up will take some more time as compare to regular boots because of the relabelling process.

Reset root Password 3
Reset root Password 3

Login with new password.

If you are new to Linux and facing difficulty in working at Linux Bash prompt. We recommend that, you should read The Linux Command Line, 2nd Edition: A Complete Introduction by William Shotts.

Conclusion

We have successfully reset root password in CentOS 7.

Leave a Reply