vpxd) service crashes repeatedly, generating core.vpxd-worker dump files.vCenter server 8.0U3.
instanceuuid values in the future.To resolve this issue update the missing instanceuuid for the affected VM(s) using Power CLI:
Get-VM | Select-Object Name, @{N="BIOS_UUID"; E={$_.ExtensionData.Config.Uuid}}, @{N="Instance_UUID"; E={$_.ExtensionData.Config.InstanceUuid}}Get-VM | Where-Object {$_.ExtensionData.Config.InstanceUuid -eq $null} | Select-Object Name1. Generate a new GUID$newGuid = (New-Guid).ToString()2. Specify the VM name that has missing UUID$vmName = "VMName"3. Create the spec and apply$spec = New-Object VMware.Vim.VirtualMachineConfigSpec$spec.InstanceUuid = $newGuid$vm = Get-VM -Name $vmName$vm.ExtensionData.ReconfigVM_Task($spec)
(Get-VM -Name $vmName).ExtensionData.Config.InstanceUuid
Get-VM -Name $vmName | Select-Object Name, @{N="BIOS_UUID"; E={$_.ExtensionData.Config.Uuid}}, @{N="Instance_UUID"; E={$_.ExtensionData.Config.InstanceUuid}}
This should help the vCenter server to be stable and accessible.