Today another Veeam troubleshooting trick. It’s possible that you’ll receive the following error in one of your Veeam Backup Jobs:
Verifying change block tracking:
Disk “Hard disk 1” has incorrect changed block tracking configuration
This is how it looks like in the Veeam Backup console:
The procedure which Veeam describes in the solution for this problem works like this:
- Shutdown the VM
- VM – Edit Settings – Options – General – Configuration Parameters…
- Change every item with ctkEnabled to false
- Start the VM
- Start the Backup Job to see if this is the solution for this problem.
This is how you change the parameter to false:
In my case, the above solution did not solve the problem. So I had to troubleshoot the VM. While checking the configuration a noticed that the Disk was configured with the Independent mode enabled. You can change this setting when the VM is powered off. Go to Hardware, select the Hard disk and disable the checkbox by Independent:
The setting above can only be changed when the VM is powered off, if you’re using the vSphere client. It’s also possible to change this setting, on-the-fly with PowerCLI. That rimes .
You can run the following one-liner to disable the Independent mode:
Get-VM <vmName> | % { Get-HardDisk -VM $_ | Where {$_.Persistence -eq "IndependentPersistent"} | ` % {Set-HardDisk -HardDisk $_ -Persistence "Persistent" -Confirm:$false} }
Disclaimer: this one-liner worked for me in my environment but test this first because I don’t know exactly what the impact is of this change.
Thanks afokkema.. i had same prob (Disk Hard disk # has incorrect changed block tracking configuration) Now its replicating with Changed Block Tracking.
Yup, same thing here! And this was bugging me for some time since it was a production SQL server. Thanks a lot!