"A certificate validation operation took 30007.5449 milliseconds and has exceeded the execution time threshold. If this continues to occur, it may represent a configuration issue. Please see http://go.microsoft.com/fwlink/?LinkId=246987 for more details."

Solution:
Open MMC local Computer Certificates >> Sharepoint>> Certificates >>

Generate a cert via powershell. So I done the following in the SharePoint Management Shell:
$rootCert = (Get-SPCertificateAuthority).RootCertificate
$rootCert.Export(“Cer”) | Set-Content C:\root.cer –Encoding Byte
Go back into the certificates snap in and import the certificate into the trusted root certificate authorities.
Solution:
Open MMC local Computer Certificates >> Sharepoint>> Certificates >>

Generate a cert via powershell. So I done the following in the SharePoint Management Shell:
$rootCert = (Get-SPCertificateAuthority).RootCertificate
$rootCert.Export(“Cer”) | Set-Content C:\root.cer –Encoding Byte
Go back into the certificates snap in and import the certificate into the trusted root certificate authorities.
No comments:
Post a Comment