vSphere on Whitebox Server : TPM_TIS Error

Onlangs heb ik mijn Whitebox ESX Server geupgraded (clean install) naar vSphere. Bij het opstarten kwam de volgende foutmelding :

Initialialization for tpm_tis failed with -19

Initialialization for vmfs2 failed with -1

De oplossing is simpel : de file /etc/vmware/init/init.d/02.tpm aanpassen (lees commentaar maken van de regels)

http://kb.vmware.com/kb/1011452

Zelf heb ik het anders opgelost :

Ga naar /etc/vmware/init/init.d

chmod +t 72.ipmi (enable sticky bit on the file and ensure that it gets backed up into the system backup file)

edit 72.ipmi file (gebruik nano of vi)

Mijn file ziet er nu als volgt uit :

#!/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}
}

 

Voordeel is dat ESX niet meer op een time-out hoeft te wachten en het opstarten ook een stuk sneller verloopt!

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.