Make sure both servers are in the "Exchange Trusted Subsystem" security group
Exchange 2016 DAG Database Mount Issues and Active Manager Errors
Active Manager encountered an error when trying to refresh configuration information from Active Directory. Error: The server is in a database availability group, but Active Manager was unable to access the cluster database for the value ClusterGroup. The server may have just been removed from the database availability group. There are 2 servers in the DAG, and the witness share is available. However, no commands related to managing the DAG work; all return an Active Manager error.
I have removed database copies from the secondary server but still cannot mount databases or remove either server from the DAG group. Additionally, OWA and Exchange services do not work on either server. I can put the secondary server in maintenance mode, but it made no difference.
3 answers
Sort by: Most helpful
-
-
Jake Zhang-MSFT 8,700 Reputation points Microsoft Vendor
2025-01-29T02:47:23.6+00:00 Hi @Leroy Sumlin ,
Welcome to the Microsoft Q&A platform!
Based on your description, you are dealing with a complex issue involving Database Availability Groups (DAGs) and Active Manager. Here are some steps you can take to troubleshoot and possibly resolve the issue:
- Make sure the cluster service is running on both servers. You can do this by running the following command in PowerShell:
Get-Service -Name ClusSvc
- Check the status of the DAG using the following command:
Get-DatabaseAvailabilityGroup -Status | Format-List
This will provide detailed information about the DAG and its members.
- Run the Test-ReplicationHealth command to check the health of the replication service:
Test-ReplicationHealth
- If there is an issue with the cluster node, you may need to clear the cluster node and re-add it. Use the following command:
Clear-ClusterNode -Name <ServerName>
Then, add the server back to the DAG:
Add-DatabaseAvailabilityGroupServer -Identity <DAGName> -MailboxServer <ServerName>
- Make sure the DAG has quorum. You can check the quorum status using the following command:
Get-ClusterQuorum
- Check the event logs on both servers for any errors related to the Cluster service or Active Manager. This can provide more insight into what may be causing the problem.
- Sometimes restarting the Exchange services can help resolve the issue. You can restart the services using the following commands:
Restart-Service MSExchangeIS Restart-Service MSExchangeADTopology Restart-Service MSExchangeMailboxReplication
Please feel free to contact me for any updates. And if this helps, don't forget to mark it as an answer.
Best,
Jake Zhang
-
Amit Singh 5,071 Reputation points
2025-01-29T09:55:15.03+00:00 You can refer same thread here-
https://community.spiceworks.com/t/exchange-2016-dag-already-joined-to-a-dag/711492