Error ID: 31224
Applies To: System Center Data Protection Manager 2010
Error ID 31224 — Data Protection Manager
Details
Product |
Data Protection Manager |
ID |
31224 |
Source |
|
Version |
3.0 |
Symbolic Name |
|
Message |
Create protection group: <protection group name> failed. The ‘Allocate Replica’ task for <data source name> failed. |
Explanation
This error can occur if you perform the following actions in sequence:
Protect a data source in one protection group (protection group 1).
Stop protecting the data source in protection group 1 and retain its data.
Protect the data source in a second protection group (protection group 2).
Stop protecting the data source in protection group 2, retain its data, and then protect the data source in a third protection group.
User Action
To protect a data source that has been previously protected in two other protection groups, you must first remove all recovery points of the data source that are associated with the first protection group as described in the following steps:
Get a list of all data sources on the DPM server.
$ds = Get-Datasource [-DPMservername]<DPMservername>
Identify the data source that you want to protect in the list. Using $ds returns a zero-based array. So if the data source you want is the sixth one in the list, you would use $ds[5] to identify it in the next step.
Get all the recovery points associated with the data source.
$rp = Get-RecoveryPoint $ds[5]
Select a recovery point that was taken when the data source was in the first protection group (for example, $rp[2]).
Remove the recovery point.
Remove-RecoveryPoint $rp[2]
Repeat the last two steps until you have removed all recovery points associated with the data source when it was in the first protection group.