Hello Imran Qureshi
Thank you for reaching out to Microsoft Q&A forum regarding the issue with your Exchange Server 2019 mailbox database failed to mount after reboot. From what you've described, the database is in a clean shutdown state, the disk is up and running with no permission issues, but it's stuck in FailedAndSuspended status. This happens sometime after a reboot, probably tied to replication or the content index in your DAG. Here something you can try to troubleshoot this (Note: Back up your database before proceeding, and ensure your server is on the latest Cumulative Update).
First, we need to Gather Detailed Status. Run the following command to collect more information:
Get-MailboxDatabaseCopyStatus DB01 | Format-List Name, Status, ContentIndexState, CopyQueueLength, ReplayQueueLength, ErrorMessage, ActivationSuspended, LastInspectedLogTime
Also, review the Event Viewer on the affected server:
- Go to Applications and Services Logs > Microsoft > Exchange > HighAvailability and MailboxDatabaseFailureItems.
- Around the time of the reboot, look for errors event IDs like 4113 (index issues) or 4114 (replication failures).
If the issue seems transient, meaning no obvious hardware/log errors from the status or events, start by resuming replication. This often resolves post-reboot suspensions without a full reseed.
Resume-MailboxDatabaseCopy -Identity "DB01\ServerName"
Wait a few minutes, then check status with Get-MailboxDatabaseCopyStatus. If it becomes Healthy, mount the database with Mount-Database -Identity "DB01"
If ContentIndexState is Failed or similar, reseed only the catalog with:
Update-MailboxDatabaseCopy -Identity "DB01\ServerName" -CatalogOnly
It's faster and avoids copying the entire database.
If all failed, do a full reseed. First suspend, even if already suspended, this ensures a clean start:
Suspend-MailboxDatabaseCopy -Identity "DB01\ServerName" -Confirm:$false
#then Reseed:
Update-MailboxDatabaseCopy -Identity "DB01\ServerName" -DeleteExistingFiles
This may take time depending on your database size.
I hope this helps resolve your concern. If you have any additional questions, feel free to comment below. I’ll be more than happy to assist.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.