Scenario
After adding a new node (4th) to an existing Hyper-V Cluster, DPM backup jobs failed on VM’s that where hosted on the new node.
For this cluster I use hardware snaphots on a Dell Equallogic SAN. So the “HIT Kit” from Dell was installed on the server and all the other required components to get this running. But unfortunately as soon as I placed a VM on the new node, the DPM snapshots failed. The message on the DPM server was:
Failed to prepare a Cluster Shared Volume (CSV) for backup as another backup using the same CSV is in progress. (ID 32612 Details: Back up is in progress. Please wait for backup completion before trying this operation again (0x8007173D))
Solution
This error is confusing because it normally means that you haven’t serialized the backup of the VM’s on the cluster and/or the MaxAllowedParallelBackups key was not set. This was all done. So that couldn’t be the case.
What I noticed was that when we initiated a backup, there was no snapshot created on the Equallogic. I checked that the Equalogic VSS writer was available on the server (with the “VSSADMIN LIST PROVIDERS” command). No problem there.
Next step was to run a Cluster Validation Report with the Failover Cluster Manager.
In this report there was a warning for the new node and the CSV volumes: “This node is not a possible owner for this resource”. You cannot add a cluster node as a possible owner for CSV volumes via the Failover Cluster Manager so I had to go with the command prompt:
- First check the list of possible owners:
cluster res ‘name of resource’ /listowners
I checked in my case the 2 CSV volumes. - Add the new node to the list:
cluster res ‘name of resource’ /addowner:’missing node’
Also did this for both of the CSV volumes.
I ran the Cluster Vaildation Report again and the warning was gone. So I tried a backup with DPM and as a miracle this worked as well J.
You sir are a genius! Ive spent the last 24 hours puzzling over VssTrace logs to no avail! The solution was exactly as you had suggested.
I try your method ran Failover cluster validation report, it shown I’m missing possible owners for resource, when I try the command this is what I got – “System error 5010 has occurred” ( 0x000001392 ) The object already exists.
Found Hotfix for my problem – http://support.microsoft.com/kb/2626689
Thank you for your suggestion.