1. Configure ESXi host to use a network coredump collector by running these commands:
# esxcli system coredump network set --interface-name vmkX --server-ipv4 X.X.X.X --server-port 6500
# esxcli system coredump network set --enable true
2. Disable and delete the currently configured coredump file:
# esxcli system coredump file set --enable false
# esxcli system coredump file remove --force
3. Disable autoCreateDumpFile:
# esxcli system settings kernel set -s autoCreateDumpFile -v FALSE
You can check the setting with the following command:
# esxcli system settings kernel list -o autoCreateDumpFile
4. Reboot the ESXi host.