Note: This article applies to Exchange Server that is members of a Database Availability Group. These steps are common for versions higher than Exchange 2010.
On an Exchange Server, you may encounter failed content indexes that are preventing end users from being able to run searches in OWA and Outlook.
Failed content Index also stops you from activating the passive database copies during database switchover. There is a workaround to failover database with failed content index. Microsoft Reference
To solve the problem, perform the following steps to repair the content index.
Get-mailboxdatabase Database1 | get-mailboxdatabasecopystatus | select name, *index*
Update-MailboxDatabasecopy Database1\Server1 –sourceserver Server2 –catalogonly
Note : * Server name on which content index is in a healthy state.
** Database name in format : Database1\Server1
Updating of the catalog will take sometimes depend upon catalog size.
Get-MailboxDatabase Database Name | Get-MailboxDatabaseCopyStatus | Select Name,*index*
Get-mailboxdatabase Database1 | get-mailboxdatabasecopystatus | select name, *index*
If the server is not part of DAG, we will have a single copy of the database and the content index is corrupted? How do we get it back to a healthy state? All we need is to delete the catalog folder & it’s subfolders after stopping the search service.
In Exchange 2013/2016:
Stop-Service MSExchangeFastSearch
Stop-Service HostControllerService
Start-Service MSExchangeFastSearch
Start-Service HostControllerService
In Exchange 2010:
Stop-Service MSExchangeSearch
Start-Service MSExchangeSearch
Hope these instructions have helped you out!
Have a question about something in this article? You can receive help directly from the article author. Sign up for a free trial to get started.
Comments (2)
Commented:
Commented: