How to Reset Forgotten Root Password in RHEL Systems

This article will guide you through simple steps to reset forgotten root password in RHEL-based Linux distributions such as Fedora, CentOS Stream, Rocky and Alma Linux.

Resetting the forgotten root user password generally requires a few easy instructions that will guide you to reset the root password and you will thereafter be able to log in using the new password.

How to Reset Forgotten Root Password

First, restart your system, and at the boot grub menu choose the kernel (mostly the first option) you wish to boot into and press the key 'e' on your keyboard.

RHEL 8 Boot Menu
RHEL 8 Boot Menu

On the next screen, you will see the following kernel boot parameters, here find the line that starts with kernel= and add the parameter rd.break at the end as shown and press Ctrl + x keys.

Append Kernel Parameter
Append Kernel Parameter

On the next screen, you will land into emergency mode, here press Enter key to get into the shell prompt. Now, make sure to confirm that you remount the sysroot directory with read and write permissions. By default, it is mounted with read-only mode indicated as ro.

# mount | grep sysroot
Confirm Sysroot Directory Permissions
Confirm Sysroot Directory Permissions

Now remount the sysroot directory with read and write permissions and confirm the permissions again. Note that this time, the permissions have changed from ro (read-only) to rw (read and write) as shown.

# mount -o remount,rw /sysroot/
# mount | grep sysroot
Mount Sysroot Directory
Mount Sysroot Directory

Next, mount the root file system in read and write mode using the following command.

# chroot /sysroot

Next, use the passwd command to reset the root password with the new password and confirm it.

# passwd
Reset Root Password
Reset Root Password

At this point, you have successfully reset your root user password. The only remaining part is to relabel all of the files with the accurate SELinux contexts.

# touch /.autorelabel
Enable SELinux Relable
Enable SELinux Relable

Finally, type exit and then log out to start the SELinux relabelling process.

SELinux Relabelling Process
SELinux Relabelling Process

This generally takes a few minutes and once done, the system will reboot and prompt you to log in as the root user with the new password.

RHEL 8 Login
RHEL 8 Login
Conclusion

In conclusion, resetting a forgotten root password in RedHat-based Linux distributions is a relatively simple process that involves accessing the system during boot, modifying kernel parameters, and using specific commands to reset the password.

Ravi Saive
I am an experienced GNU/Linux expert and a full-stack software developer with over a decade in the field of Linux and Open Source technologies

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed)
Was this article helpful? Please add a comment or buy me a coffee to show your appreciation.

Got Something to Say? Join the Discussion...

Thank you for taking the time to share your thoughts with us. We appreciate your decision to leave a comment and value your contribution to the discussion. It's important to note that we moderate all comments in accordance with our comment policy to ensure a respectful and constructive conversation.

Rest assured that your email address will remain private and will not be published or shared with anyone. We prioritize the privacy and security of our users.