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..

Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,349 questions
Exchange Server Development
Exchange Server Development
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Development: The process of researching, productizing, and refining new or existing technologies.
526 questions
Not Monitored
Not Monitored
Tag not monitored by Microsoft.
37,417 questions
Microsoft Exchange Hybrid Management
Microsoft Exchange Hybrid Management
Microsoft Exchange: Microsoft messaging and collaboration software.Hybrid Management: Organizing, handling, directing or controlling hybrid deployments.
1,981 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
20,368 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Wandi Ding -MSFT 2,870 Reputation points Microsoft Vendor
    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