Hi everyone,
I am troubleshooting a DFS Replication issue between an Azure-hosted server and two on-premises partners and would appreciate a second opinion on the remediation plan.
Environment:
- SRV-AZURE-01: Azure VM (Server 2019)
SRV-ONPREM-01 & SRV-ONPREM-02: On-premises partners
Topology: Multiple replication groups syncing between Azure and On-prem.
The Issue: Following a suspected dirty shutdown (likely related to backup/snapshot activity), replication has stopped for most (but not all) folders on the Azure member (SRV-AZURE-01).
Event Viewer: We are seeing Event ID 5002 with the following error codes:
Error 9036 (Paused for backup or restore)
Error 9033 (Request cancelled by shutdown)
Error 1723 (RPC server too busy)
__WMI Status Check:__ I ran the following command to check the state of the replicated folders on `SRV-AZURE-01`: `Get-WmiObject -Namespace root\MicrosoftDFS -Class DfsrReplicatedFolderInfo | Select ReplicationGroupName, ReplicatedFolderName, State`
__Results:__
Two folders (Multimedia, Archive) are in __State 4 (Normal)__.
All other folders (Infrastructure, Shared Services, etc.) are in __State 3 (AutoRecovery)__.
My understanding is that __State 3__ indicates the database is offline/locked due to the unexpected shutdown (Event 2213 scenario) and requires manual intervention to resume.
Proposed Fix: I am planning to run the following WMI command on SRV-AZURE-01 to force the database back online:
wmic /namespace:\\root\microsoftdfs path dfsrmachineinfo call Restore
My Questions:
Is this wmic ... call Restore command safe to run while some folders on the same server are already working (State 4)? Will it impact the active folders?
Given the "RPC server too busy" errors, should I be concerned about immediate backlog flooding once the state changes to Normal?
Thanks in advance for your help!Hi everyone,
I am troubleshooting a DFS Replication issue between an Azure-hosted server and two on-premises partners and would appreciate a second opinion on the remediation plan.
Environment:
SRV-AZURE-01: Azure VM (Server 2019)
SRV-ONPREM-01 & SRV-ONPREM-02: On-premises partners
Topology: Multiple replication groups syncing between Azure and On-prem.
The Issue: Following a suspected dirty shutdown (likely related to backup/snapshot activity), replication has stopped for most (but not all) folders on the Azure member (SRV-AZURE-01).
Event Viewer: We are seeing Event ID 5002 with the following error codes:
Error 9036 (Paused for backup or restore)
Error 9033 (Request cancelled by shutdown)
Error 1723 (RPC server too busy)
__WMI Status Check:__ I ran the following command to check the state of the replicated folders on `SRV-AZURE-01`: `Get-WmiObject -Namespace root\MicrosoftDFS -Class DfsrReplicatedFolderInfo | Select ReplicationGroupName, ReplicatedFolderName, State`
__Results:__
Two folders (Multimedia, Archive) are in __State 4 (Normal)__.
All other folders (Infrastructure, Shared Services, etc.) are in __State 3 (AutoRecovery)__.
My understanding is that __State 3__ indicates the database is offline/locked due to the unexpected shutdown (Event 2213 scenario) and requires manual intervention to resume.
Proposed Fix: I am planning to run the following WMI command on SRV-AZURE-01 to force the database back online:
wmic /namespace:\\root\microsoftdfs path dfsrmachineinfo call Restore
My Questions:
Is this wmic ... call Restore command safe to run while some folders on the same server are already working (State 4)? Will it impact the active folders?
Given the "RPC server too busy" errors, should I be concerned about immediate backlog flooding once the state changes to Normal?
Thanks in advance for your help!