Provide the best software to recover passwords for
Windows, SQL Server, PDF, Word, Excel, Outlook, FTP, Email, etc.
Home > PCUnlocker > Reset ESXi Root Password

How to Reset Forgotten VMware ESXi Root Password

Lost or forgot the root password of VMware ESXi host? Is there any way to recover or reset it? Just like many Linux distributions, VMware ESXi also stores user account information, including one-way encrypted passwords, in a file called /etc/shadow. Just boot your server with a Linux Live CD and you can remove the root password easily.

This tutorial explains how to use Ubuntu Live CD to reset forgotten root password on VMware ESXi 5.5, so you can log back into your ESXi server without reinstalling.

How to Reset VMware ESXi Root Password with Ubuntu Live CD?

  1. Boot your ESXi server from Ubuntu Live CD. After a while, the system installer will appear with the option to "Try Ubuntu" or "Install Ubuntu". Click on "Try Ubuntu" to load Ubuntu directly into RAM, without installing it on your hard drive.

    Try Ubuntu

  2. After getting to the Ubuntu desktop, click on the Ubuntu icon in the upper left corner and search for GParted in the Dash. Double-click on GParted Partition Editor to launch it.

    Search GParted in Ubuntu

  3. Look at the partition layout of ESXi 5. The actual hypervisor/system image is located on the first 250 MB partition (/dev/sda5) which contains the state.tgz file.

    GParted Partition Editor

  4. Now that we know that the partition which we need to mount is /dev/sda5, close GParted and open the Terminal.

    Ubuntu Terminal

  5. In terminal, type "sudo -s" to gain root access and then mount the ESXi system partition with the following commands. After mounting, you'll see the state.tgz file that we need to unpack now.

    sudo -s
    mount /dev/sda5 /mnt
    cd /mnt
    ls

    Mount sda5 partition

  6. Copy state.tgz to the /tmp folder, and then unpack the state.tgz file which contains another compressed archive named local.tgz.

    cp  state.tgz  /tmp
    cd  /tmp
    tar xzf  state.tgz
    ls

    Unpack the state.tgz file

  7. Unpack the local.tgz file which has the /etc directory compressed in it.

    tar  xzf  local.tgz
    ls

    Unpack the local.tgz file

  8. Go to the /etc directory and you can gain access to the shadow file which contains the password hash of ESXi root account.

    Locate the shadow file

  9. Run the vi shadow command to open the shadow file in the vi editor. You'll find out that the password hash of the root account is surrounded by the first two colons. To remove the existing root password, you need to delete the password hash.

    Delete the password hash of the root account

  10. Once you have removed the password hash, press ESC to return to the command mode. Type in :wq and press Enter. This will save your changes and exit the vi editor.

    Exit the vi editor

  11. Re-pack the files and copy the modified state.tgz file back to the ESXi system partition with the following commands:

    cd ..
    tar czf  local.tgz  etc
    tar czf  state.tgz  local.tgz
    cp  state.tgz  /mnt/
    umount  /mnt

    Copy the state.tgz file back to ESXi system partition

  12. We’re almost done! Just type reboot then remove the live CD and wait for ESXi server to restart. After a while, you'll get the following screen where you can configure the system by pressing F2.

    VMware ESXi

  13. Just keep the password field blank and you can log into the root account.

    Login to VMware ESXi as root without password

  14. Please make sure that you set a new root password and store it confidentially. Do not lose it again.

    Change VMware ESXi root password

Now you've successfully reset lost root password on VMware ESXi host. The procedure is a bit complicated so carefully follow the instructions above. Enjoy it!


Related Articles