Reputation: 290
I am Not able to connect mongoDB which is over the SSL. Without SSL its working fine. I tried to ping from datasource connection setting, but its failing. Additionally I have imported public certificate to my jvm keystore.
mongodb connection url that I'm trying with is, mongodb://[user]:[password]@[hostname]:[port]/[database]?ssl=true
Upvotes: 1
Views: 540
Reputation: 290
Here, the issue is with ODA driver, which wasn't supporting the SSL based mongo. Solution is to add mongo-java driver version 2.13.1 to BirtRuntime and delete existing ODA driver org.eclipse.orbit.mongodb_2.10.1.v20130422-1135.jar.
Once done, connect to mongo using connection url, mongodb://[user]:[password]@[hostname]:[port]/[database]?ssl=true
Upvotes: 1