This is from the <a href="http://www.vm-help.com/esx40i/install_upgrade_issues.php">VMHelp Site</a>
This mostly likely indicates a server or BIOS issue and it would be best to first ensure that the host is running the latest BIOS version. If you want to disable the IPMI driver to the following, but note that this will disable certain portions of the health status that is displayed in the VI client.
1) Access the console and run cd /etc/vmware/init/init.d
2) Run the command chmod +t 72.ipmi. This will enable the sticky bit on the file and ensure that it gets backed up into the system backup file.
3) Edit the file 72.ipmi. You can use vi or the command sed -i '/Exec/s/^/return ${SUCCESS} # disable IPMInn/' 72.ipmi. This command will essentially change the file from
#!/bin/sh
# Copyright 2008 VMware Inc.,
Exec esxcfg-init -I || {
return ${NON_CRITICAL_FAILURE}
}
to
#!/bin/sh
# Copyright 2008 VMware Inc.,
return ${SUCCESS} # disable IPMI
Exec esxcfg-init -I || {
return ${NON_CRITICAL_FAILURE}
}
Last Wiki Answer Submitted: March 16, 2010 2:57 pm by ITKE16,755 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.