Verify MongoDB SSL certificates
You can configure ABS to verify the validity of MongoDB server certificate, when it tries to connect with MongoDB. This is an optional check and the following diagram shows the summary of steps involved in this verification.
+ image::pingintelligence:ROOT:pbm1606556564186.png[alt="Steps for verification of MongoDB SSL certificate"]
Ensure the following steps are completed, so that ABS can verify MongoDB server certificate before connecting to it :
-
Check if the
mongo_sslparameter in the/<pi_install_path>/pingidentity/abs/config/abs.propertiesfile is set true. -
Check if the
mongo_certificateparameter in the/<pi_install_path>/pingidentity/abs/config/abs.propertiesfile is set true. -
Import the MongoDB Server certificate into the
abs.jkstruststore, using either of the following commands as applicable. The commands prompt for adestination keystore password, and the password entered should be same as thejks_passwordconfigured in the abs.properties file.# keytool -import -file <mongodb-cert.crt> -storetype JKS -keystore /<pi_install_path>/pingidentity/abs/config/ssl/abs.jks
If the MongoDB server certificate is in
.pemformat then use the following command to import the certificate in to the ABS truststore.# keytool -import -v -trustcacerts -file server.pem -keystore /<pi_install_path>/pingidentity/abs/config/ssl/abs.jks -storetype JKS
When ABS starts, it loads the certificates available in abs.jks truststore. If the server certificate presented by MongoDB gets validated, ABS connects with it and completes the booting.
If the SSL server certificate verification fails, ABS will not start and a CertificateException is thrown by ABS. The error is logged in/<pi_install_ path>/pingidentity/abs/abs.log.
|
If ABS is running and the MongoDB server certificate expires in between, it will not stop. An error message is logged in |
Using a CA-signed certificate
You can also use a CA-signed certificate to verify the MongoDB server certificate. For that, import your existing CA-signed certificate into ABS by following the instructions explained in Import existing CA-signed certificates. Once the certificate is imported, complete Step-1 through Step-3 above so that ABS can verify MongoDB server certificate.