重置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.

    1.png

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

    2.jpg

  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.

    3.png

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

    4.jpg

  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


    5.png

  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


    6.png

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

    tar  xzf  local.tgz
    ls


    7.png

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

    8.png

  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.

    9.png

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

    10.png

  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


    11.png

  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.

    12.png

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

    13.png

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

    14.png

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!


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章