Exchange 2019 added multiple Mailbox databases copies status failed

Innocent Heartvoice 296 Reputation points
2022-06-06T06:07:51.427+00:00

We have 3 servers Exchange 2019 with DAG and now a new server has been added to DAG and there are about 50 databases with an average mailbox database size of 150 GB to 200 GB.

The problem I am having is that the new server is unable to add multiple database copies at once and has failed to retrieve the error of the database copies.

Need assistance to add multiple database copies for time saving

Exchange Exchange Server Management
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Andy David - MVP 157.4K Reputation points MVP Volunteer Moderator
    2022-06-06T12:04:10.25+00:00

    I would open three or 4 Exchange Powershell windows on the destination server and in each run the command:

    Example:
    Add-MailboxDatabaseCopy -Identity DB1 -MailboxServer MBX3 -ActivationPreference 2

    https://learn.microsoft.com/en-us/exchange/high-availability/manage-ha/add-db-copies?view=exchserver-2019

    If you see failures when you do this, that is normal.

    For the ones that fail, run:

    Update-MailboxDatabaseCopy -Identity DB1\MBX1  
    

    https://learn.microsoft.com/en-us/exchange/high-availability/manage-ha/update-db-copies?view=exchserver-2019

    Sometimes you have to suspend and resume the copying:

    Suspend-MailboxDatabaseCopy -Identity DB1\MBX1 -SuspendComment "Maintenance on MBX1" -Confirm:$False  
    Resume-MailboxDatabaseCopy -Identity DB1\MBX1  
    

    https://learn.microsoft.com/en-us/exchange/high-availability/manage-ha/suspend-resume-db-copies?view=exchserver-2019


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.