Search Host Controller hung on “starting” in SharePoint 2013
Search Host Controller stuck in state “starting” – SharePoint 2013
After installing SharePoint 2013, if the Search Host Controller is stuck in state “starting”, try the following powershell:
$SS
= Get
-SPServiceInstance
|
Where
{$_.Status
-like
“Provisioning”}
$SS
.Unprovision()
$SS
.Provision()