The secure sockets layer (SSL) certificate sent by the server was invalid and this item will not be crawled.

18/01/2013 17:35

The secure sockets layer (SSL) certificate sent by the server was invalid and this item will not be crawled.

 

Solution:

 Go to Central Administration > Application Management > Manage services on server >  Sharepoint Server Search and set it to ignore SSL warnings. Repeat full crawl of your content source again.

Or in powershell:

 

 

$searchService = Get-SPEnterpriseSearchService

if($searchService.IgnoreSSLWarnings -eq $false)

{

    Write-Host "3. Setting Ignore SSL Warnings to true..." -NoNewline

    $searchService.IgnoreSSLWarnings = $true

    Write-Host "OK"

}