Integrated Lights-Out, or iLO, is a proprietary embedded server management technology by Hewlett-Packard Enterprise which provides out-of-band management facilities.
iLO allows you to manage an HPE server at the host level over a network, regardless of power state.
If you cannot log into iLO for an HPE host because of a lost/forgotten password or a previous systems administrator did not provide credentials.
This specifically pertains to situations where the iLO is installed on an ESXi (VMware) and you have access to the ESXi.
If you do not have access to the ESXi, but do have access to the vCenter, you can reset the password by exporting, rewriting, and replacing the host profile, then performing a reboot.
note: This does require a VMware Enterprise Plus license
Log into the vCenter/ESXi where the iLO connected to the host resides
Turn on SSH This can be done under: vcenter.example.com > Host > Configure > System > Services > SSH > Start
SSH into host using PuTTy or terminal of choice with ESXi credentials
Switch to the /opt/tools directory where hponcfg resides and find the hponcfg file
cd /opt/tools
ls -l
./hponcfg -w currentcfg
Feel free to take a look at the output using something like vi
touch pwreset.xml
vi pwreset.xml
Copy/Paste:
<RIBCL VERSION="2.1">
<LOGIN USER_LOGIN="Administrator" PASSWORD="password">
<USER_INFO MODE="write">
<MOD_USER USER_LOGIN=”Administrator”>
<password value=”newpassword”/>
</MOD_USER>
</USER_INFO>
</LOGIN>
</RIBCL>
Replace “newpassword” with a password of your choice
Write and quit out of your text editor to save the XML file changes
<Esc key>
:wq
./hponcfg -w pwreset.xml
Don’t forget to clean up your room after playing with your toys
rm -f currentcfg pwreset.xml
vcenter.example.com > Host > Configure > System > Services > SSH > Stop