iklan banner
MASIGNCLEAN104

Search Service Application: Manage Content Sources stuck pause

iklan banner
normal Search Service like below pic
If you discover that the search service application in your environment is paused (look under “administrative status” under Search Administration in Central Administration), you can first try to find the reason, and if the service is stuck, you can try to force it to resume. Typically, the administrative status could be “Paused for:External request”. If you have this issue, start SharePoint 2013 Management Shell and do the following
Get the search service application
$ssa = Get-SPEnterpriseSearchServiceApplication “Search Service Application”
Check if the SSA is paused (return “True” if paused)
$ssa.IsPaused() -ne 0
To check for the reason, run one of the commands described on the following TechNet article:
https://technet.microsoft.com/en-us/library/dn745901(v=office.15).aspx
Example: “($ssa.IsPaused() -band 0x04) -ne 0“: “A backup of the Volume Shadow Copy Service (VSS) is in progress”
If you did not find a reason using the above commands, or if it is not a “logical” reason, try to force the SSA to resume:
$ssa.ForceResume($ssa.IsPaused())




Share This :