Splunk AppDynamics On-Premises Database Visibility Administer the Database Agent Configure the Database Agent Enable SSL and SSH for Database Agent Communications Current: Monitor SSL-enabled MongoDB PDF Download PDF Download page Monitor SSL-enabled MongoDB. Current page All pages Monitor SSL-enabled MongoDB You can configure your MongoDB instance to use SSL connections.Create a keystore on the database agent host.Import the SSL certificates to this keystore using the following command: keytool -importcert -trustcacerts -file <mongodb certificate location> -keystore <keystore e.g. path/mongo.jks> -storepass <keystore password> -alias <alias> CODE Start the database agent with the following flags: java -Ddbagent.name=<DBAgent Name> -Djavax.net.ssl.trustStore=<keystore e.g. path/mongo.jks> -Djavax.net.ssl.trustStorePassword=<keystore password> -jar db-agent.jar CODE Create the mongodb collector with custom URL: mongodb://<mongodb-host>:27017/?ssl=true CODE ×