Update passive database copies in DAG

azhar Nasim 0 Reputation points
2023-11-20T15:20:08.9833333+00:00

I have a DAG of four servers when i want to update passive database one one server i get this error

WARNING: Seeding of content index catalog for database 'DB02' failed. Please verify that the Microsoft Search (Exchange) and the Host Controller service for Exchange

services are running and try the operation again. Error: There was no endpoint listening at

net.tcp://localhost:3863/Management/SeedingAgent-1BF78381-0E9F-4453-AAAC-E2A5C0417E6B12/Single that could accept the message. This is often caused by an incorrect

address or SOAP action. See InnerException, if present, for more details..

Exchange Online
Exchange Online
A cloud-based service included in Microsoft 365, delivering scalable messaging and collaboration features with simplified management and automatic updates.
Exchange | Exchange Server | Development
Exchange | Hybrid management
Exchange | Hybrid management
The administration of a hybrid deployment that connects on-premises Exchange Server with Exchange Online, enabling seamless integration and centralized control.
Microsoft Security | Microsoft Entra | Microsoft Entra ID
Community Center | Not monitored
{count} votes

1 answer

Sort by: Most helpful
  1. Anonymous
    2023-11-21T05:58:29.68+00:00

    Hello @azhar Nasim ,

    Based on the information you provided, it is first recommended that you verify that the Microsoft Search (Exchange) service and the Exchange Host Controller service are running well on the server. You can check the status of a service using the PowerShell cmdlets.

    Get-Service | Where-Object {$_.Name -eq "MSExchangeFastSearch"} | Select-Object Name, Status
    
    Get-Service | Where-Object {$_.Name -eq "MSExchangeServiceHost"} | Select-Object Name, Status
    

    These commands will display the name and status of the Microsoft Search (Exchange) service and the Exchange Host Controller service. If the status is "Running", then the service is working properly. If the services are not running, you can start them.

    Besides, please use the following command to check the content index of the database copy:

    Get-MailboxDatabaseCopyStatus *| select name,status,contentindexstate|Sort-Object name
    

    For more information, please refer to Get-MailboxDatabaseCopyStatus.


    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.

    0 comments No comments

Your answer

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