Article Content
Article Number | 000039476 |
Applies To | Product Set: Archer |
Issue | During the installation and after verifying that all pre-requisites are set and installed appropriately, you are still seeing this error:![]() Config service not reachable. Please verify service url and the certificate. |
Cause | Initially you may believe that the issue is with the RSA Configuration Certificate but this is not the case. The cause may be due to another CA issued certificate that exists in the Trusted Root Store. This cert can also exist in the Intermediate root store. The reason that this cert is in both locations is because the issued to and issued by are different. However this causes a problem for the Vendor Portal installation. |
Resolution | On the server that you are attempting the installation on, run the following command in powershell. This command will export an output file at the location on the end of the command. You may update this to export the output file to a different location. Get-Childitem cert:\LocalMachine\root -Recurse | Where-Object {$_.Issuer -ne $_.Subject} | Format-List * | Out-File “c:\computer_filtered.txt" Verify that the output file is not empty and look for the thumbprint of the certificate near the bottom area of the file. Next, Open up the certificate store and go to the trusted root store. To narrow it down, locate certificates that have a different "issued by" and "issued to" Next, verify that the thumbprint matches what the output file has. Then go to the immediate root certificate store. Then verify if the certificate exists there as well.
Once one of the above is performed, re-run the command above and verify that the newly exported output file is blank. If it is blank, you are safe to re-run the installer and you should be able to get beyond the point where the error message appeared. |