Configuring ESXi 5.5 Dump Collector

Share on:

Thank you to everyone who listened to me on the EMEA vBrownbag. Here are copies of documentation and scripts on how to configure ESXi to use the remote dump collector.

Check the ESXi Dump Collector Configuration Example:

1Foreach ($vmhost in (get-vmhost)){
2$esxcli = Get-EsxCli -vmhost $vmhost
3$esxcli.system.coredump.network.get()}

Setting the ESXi Dump Collector Example:

1Foreach ($vmhost in (get-vmhost)) {
2$esxcli = Get-EsxCli -vmhost $vmhost
3$esxcli.system.coredump.network.set($null, “vmk0″, “IPtoDumpCollector″, “6500″)
4$esxcli.system.coredump.network.set($true)}

Test Host by Causing PSOD

Run the following command via SSH or Direct Shell. We can see that the server is now doing a network coredump.

1vsish -e set /reliability/crashMe/Panic 1

#Post-Installation Changes If you wish to change the default port or maxsize of the dump, these can be changed by modifying the vmconfig-netdump.xml file. See below link with instructions on how to make the changes and restart the Dump Collector Service. KB2002954

#PowerCLI Scripts courtesy of Mike Laverick http://www.mikelaverick.com/2013/12/back-to-basics-installing-other-optional-vcenter-5-5-services/

comments powered by Disqus

See Also