ECP won't work unless the old Exchange server is on.

Susan Dodds 191 Reputation points
2024-08-26T04:16:04.74+00:00

All Exchange servers listed are Exchange 2019.

Long story short, I have a single server environment.

Box A became unusable after a windows update made it so Microsoft Filtering Management Service would not start. No error besides it failed to start.

This caused me to throw together Box B in a hurry. Luckily, migration still works so I can save the mailboxes.

However, when I switch my internal DNS (autodiscover and word.contoso.com) to the new box or disconnect Box A from the network, the ECP becomes unavailable on Box A, Box B, and any computer trying to access the ECP until I turn DNS back to Box A or put Box A back on the network.

I have it so internal and external URL's are the same. The URL's are the same on each box. This has worked going from 2013 to 2016 to 2019.

What am I missing?

Exchange Server
Exchange Server
A family of Microsoft client/server messaging and collaboration software.
1,265 questions
Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,604 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Jake Zhang-MSFT 4,980 Reputation points Microsoft Vendor
    2024-08-26T08:23:33.0866667+00:00

    Hi @Susan Dodds,

    Welcome to the Microsoft Q&A platform!

    It sounds like you are dealing with a complex issue involving your Exchange 2019 servers and DNS configurations. Here are a few steps you can take to troubleshoot and resolve the issue:

    1. Ensure that the DNS records for autodiscover and the mail domain are correctly pointing to Box B. Check both internal and external DNS settings.
    2. Verify the internal and external URLs configured for the Exchange services on Box B. You can do this using the following PowerShell commands on Box B:
         Get-ExchangeServer | fl AutoDiscoverServiceInternalUri Get-WebServicesVirtualDirectory | fl InternalUrl,ExternalUrl Get-OwaVirtualDirectory | fl InternalUrl,ExternalUrl Get-EcpVirtualDirectory | fl InternalUrl,ExternalUrl
      
      Ensure that the URLs are correctly set to the new Box B server's address.
    3. Check the health of relevant services on Box B. Ensure that all necessary Exchange services are running:
         Get-Service | Where-Object {$_.DisplayName -like "*exchange*"} | Select-Object DisplayName, Status
      
    4. Ensure that the SSL certificates are properly configured on Box B. If the certificates are not correctly installed, the ECP might fail to load.
    5. Verify the Outlook Anywhere settings and ensure they are set correctly for Box B:
         Get-OutlookAnywhere | fl ExternalHostname, InternalHostname
      
    6. Reset the ECP virtual directory on Box B if necessary. Sometimes, resetting the virtual directory can resolve issues with accessibility:
         Remove-EcpVirtualDirectory -Identity "ServerName\ecp (Default Web Site)" New-EcpVirtualDirectory -Server "ServerName"
      
    7. If you have a DAG setup or any form of mailbox replication, ensure that the databases are properly mounted and replicated on Box B.
    8. Use the Exchange Remote Connectivity Analyzer (https://testconnectivity.microsoft.com/) to test the connectivity to Box B. This can help identify any issues with autodiscover or other services.
    9. Double-check the network configuration and firewall settings to ensure there are no blocks or issues preventing proper communication with Box B.

    Taking these steps should help you identify and resolve the issue with accessing the ECP on Box B after changing the DNS records.

    Please feel free to contact me if you have any queries.

    Best,

    Jake Zhang


  2. DURAI, JEYAKUMAR(Admin) 0 Reputation points
    2024-08-28T06:13:44.6566667+00:00

    Hi,

    Did you check if the arbitration mailboxes were moved from Exchange 2016 to 2019? The ECP will not work until they are moved to the Exchange 2019.

    https://www.alitajran.com/move-arbitration-mailboxes-in-exchange-server/


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.