我想通过我的dropwizard服务连接到启用SSL的mongoDB集群。我找不到与此相关的相关文档。我确实有.pem文件
我尝试了以下操作:https://docs.mongodb.com/manual/tutorial/configure-ssl-clients/,但它仅提及命令行命令,而与配置无关:mongo --ssl --host hostname.example.com --sslCAFile /etc/ssl/ca.pem < / p>
dbName: "test"
username: "${mongo_test_user_name}"
password: "${mongo_test_password}"
writeConcern: "someValue"
readPreference: "someValue"
maxConnectionsPerHost: 10
threadsAllowedToBlockForConnectionMultiplier: 3
serverSelectionTimeout: -2
我不确定应该在配置和应用程序,配置中添加什么以使其起作用