We are running Exchange 2013 DAC mode enabled and are testing a DR scenario where site A goes down and we need to recover in site B
mailsvr1 is the active mailbox server in site A
mailsvr2 is the passive mailbox server in site B
CASsvr1 is the witness server in site A
CASsvr2 is the alternate witness server in site B
We drop Site A and successfully recover site B by running:
Stop-DatabaseAvailabilityGroup dag1 -MailboxServer mailsvr1 -ConfigurationOnly
Stop-Service clussvc
Restore-DatabaseAvailabilityGroup dag1
We bring Site A back up and try to rejoin it by running:
Start-DatabaseAvailabilityGroup dag1 -MailboxServer mailsvr1 -ConfigurationOnly
start-service clussvc
this step fails as the service is disabled, setting the service to automatic and retrying results in:
The Cluster service cannot be started. An attempt to read configuration data from the Windows registry failed with error ’2′.
we try to start the service with:
net start clusscv -forcequorum
this also fails with Error 1722
running the following commands do not help:
Restore-DatabaseAvailabilityGroup dag1
Set-DatabaseAvailabilityGroup dag1
running the following commands do not help:
Cluster.exe Node mailsvr1 /ForceCleanUp
Start-DatabaseAvailabilityGroup DAG1 –MailboxServer mailsvr1
In EAC the DAG shows mailsvr1 is not operational
If we try to add mailsvr1 in FCM, it says that its already a member of a DAG
the output from Get-DatabaseAvailabilityGroup | fl is correct:
Name : DAG1
Servers : {mailsvr2, mailsvr1}
WitnessServer : CASsvr1.domain.com
WitnessDirectory : C:\DAG1
AlternateWitnessServer : CASsvr2.domain.com
AlternateWitnessDirectory : C:\DAG1
ManualDagNetworkConfiguration : False
DatacenterActivationMode : DagOnly
StoppedMailboxServers : {}
StartedMailboxServers : {mailsvr1.domain.com, mailsvr2.domain.com}
Does anyone know how we can start the cluster service on mailsvr1 and get the node to rejoin?
Thanks
shapi