Exchange 2016 Mailbox Replication service stuck

Monte Caldwell 0 Reputation points
2025-01-23T20:51:10.5066667+00:00

Just upgraded to Exchange 2016 from 2010. All user mailboxes are moved and just migrated the Public Folders. Now the mailbox replication service is stuck on stopping. There is no mailbox moves that I can find in the exchange servers. Restarting the servers and even shutting down for 10 minutes and rebooting doesn't resolve the issue.

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,785 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Jake Zhang-MSFT 8,930 Reputation points Microsoft Vendor
    2025-01-27T02:48:45.5233333+00:00

    Hi @Monte Caldwell ,

    Welcome to the Microsoft Q&A platform!

    Based on your description, you are dealing with an issue where the Mailbox Replication Service (MRS) is stuck in a stopped state. Here are a few steps you can try to resolve the issue:

    1. Run the following PowerShell commands to make sure there are no pending move requests:
    Get-MoveRequest | Get-MoveRequestStatistics
    

    If there are, you may need to remove them using the following command:

    Remove-MoveRequest -Identity <MoveRequestIdentity>
    
    1. Sometimes, manually restarting the service can help. Run:
    Restart-Service MSExchangeMailboxReplication
    
    1. Look for any related errors in Event Viewer under Applications and Services Logs > Microsoft > Exchange > MailboxReplication. This may give you more insight into what is causing the issue.
    2. Make sure your Exchange 2016 server is updated with the latest cumulative updates and patches. Sometimes, updating can resolve underlying issues.
    3. Check the health of MRS using the following command:
    Get-ServerHealth -Identity <ServerName> | Where-Object {$_.HealthSetName -eq "MailboxReplication"}
    
    1. If the above steps do not work, you may need to rebuild the MRS configuration. This involves stopping the service, deleting the configuration file, and then restarting the service. Perform this step with caution and ensure you have a backup.

    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


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.