Troubleshooting MacOS Certificate Errors
If Connection Manager is displaying a MacOS the following "Incomplete certificate revocation check occurred" error, it means that Connection Manager was not able to validate the Secret Server SSL certificate by a certificate authority.
This issue might have multiple root causes. Consider all of the possible causes below and follow the troubleshooting steps in each section.
Missing OCSP Responder URI in Certificate
-
Open the Secret Server URL in Chrome.
-
Open Certificate Viewer.
-
In the Details tab, go to
Certificate Fields >Authority Information Access
-
Check Field Value, it should contain OCSP Responder URI.
-
Save and provide screenshot of the previous command to Delinea Support.
-
Try open this URI in browser, let us know what you see (make screenshot if possible).
-
Export certificate using the button below and save it as
certificate.pem
(this will be needed for troubleshooting steps).
Secret Server Certificate Validation Fails When Using OCSP
Only check this if the OCSP Responder URI is present in the certificate.
-
Open in this Terminal app and cd to folder that contain
certificate.pem
from previous step. -
Assign SSURL variable to Secret Server Host.
-
Get an Intermediate Certificate. To view the list of intermediate certs, use the following command:
Copyopenssl s_client -showcerts -connect $SSURL:443 < /dev/null 2>&1 | sed -n '/-----BEGIN/,/-----END/p'
The very first certificate is the server certificate you saved in previous step. For all the certificates below, they will be copied and saved to a file called
chain.pem
.Example
chain.pem
file (Can be opened with the Text Edit application): -
Get the OCSP Responder URL for the server certificate:
CopyOCSPURL=$(openssl x509 -noout -ocsp_uri -in certificate.pem)
echo $OCSPURLMake sure the SSURL displays the OCSP URL.
-
Make an OCSP validation request:
Copyopenssl ocsp -issuer chain.pem -cert certificate.pem -text -url $OCSPURL
Example output:
Make sure that Cert Status: good is displayed.
-
Save and provide output of previous command to DelineaSupport.
Incorrect Trust Policy in Root Certificate Authority
-
Open Keychain Access -> Certificate.
-
Find company Root Certificate issued by Markants. It will be either in Login or System Keychain.
-
If there is one, do a Cmd+click and go to Get Info >Trust.