exchange server stopped after DC failed ,not connect to Secondary DC

ismael2022

New Member
when my Primary DC fails or shutdown Exchange serve stopped
how can i make exchange connect to Secndary DC after Primary Failed
 
Do you have a static DC set for exchange?
Should be able to tell from the Exchange Powershell module.

Get-ExchangeServer
 
DC in exchange as you said its static defined.
How to change it to be dynamic?.
In case of Primary DC failed or stopped, exchange redirect to secondary DC
 
Last edited:
I don't believe you can tell it to not be static; however, you can assign it multiple DCs with the Set-ExchangeServer command
 
Set-ExchangeServer -StaticGlobalCatalogs GCDC01.example.com, GCDC02.example.com -StaticDomainControllers DC01.example.com, DC02.example.com -StaticConfigDomainController DC01.example.com, DC02.example.com
 
Back
Top