Hi Everyone,
Just throwing this out there and was wondering how others have experienced this.
We use VEEAM as our backup solution and were having some issues trying to move from ESXI to AHV. Every time we started a move using Nutanix Move we’d have an error about CBT not being enabled. Our resolution? Disabling CBT (yes disabling not enabling) using the following PowerCLI script!
After we ran the script the move completes succesfully! (Make sure to run it before creating your migration plan)
No clue if anyone has the same issues as us but if you do this might be a solution!
Import-Module VCF.PowerCLI
Connect-VIServer -Server YOUR.VCSA.SERVER
$vm="YOUR.VM.NAME"
$vmtest = Get-vm $vm| get-view
$vmConfigSpec = New-Object VMware.Vim.VirtualMachineConfigSpec
$vmConfigSpec.changeTrackingEnabled = $false
$vmtest.reconfigVM($vmConfigSpec)
Regards,
Westy Weijts
Den Hartogh Logistics
