Sitecore 9 XConnect 403.16 certificate Installation Issues

Recently did the Sitecore 9 Installation. Post-installation faced the below error

Browsing XConnect:

s9_1

Experience Analytics:

s9_2

Sitecore Logs:

Sitecore.XConnect.XdbCollectionUnavailableException

s9_3.jpg

The issue is because of Sitecore 9 – Untrusted certificates are installed under the Trusted folder, So we have to manually execute the below PowerShell script after Sitecore 9 installation and then restart the machine.

Use Powershell in admin mode

Get-Childitem cert:\LocalMachine\root -Recurse | Where-Object {$_.Issuer -ne $_.Subject} | Move-Item -Destination Cert:\LocalMachine\CA

s9_6

After Executing the above script, the above errors will start disappearing.

Experience Analytics:

s9_4.jpg

XConnect:

s9_5

Reference:

 

Leave a comment