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.
Disable Certificate Revocation Check
Run the following command in the terminal:
defaults write com.Delinea.ConnectionManager Url.CertificateRevocationListCheck false
Since MacOS does not always properly handle certificate revocation checks after OSCP deprecation, disabling CRL checks is the best workaround. Learn more about OSCP deprecation.
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.pemfrom 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.pemfile (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 $OCSPURLExample 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.


