You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tasneem93 said:
Graeme, is there any update on this JIRA? We are using this plugin and pretty close to go to production where it has to SSL connect to MongoDB. Please let us know. Thanks in advance.
Original Reporter: msmolyak
Environment: Not Specified
Version: Not Specified
Migrated From: http://jira.grails.org/browse/GPMONGODB-353
Currently there is no way to configure MongoDB Grails plugin to connect to MongoDB with SSL enabled. MongoDB Java driver supports such connection:
The latest version of SpringData project supports setting "ssl" option through MongoOptionsFactoryBean (http://docs.spring.io/spring-data/data-mongo/docs/1.4.0.RC1/api/org/springframework/data/mongodb/core/MongoOptionsFactoryBean.html).
With this version of MongoOptionsFactoryBean, the user of MongoDB plugin should be able to configure SSL using
mongo {
host =
port =
...
options {
ssl = true
}
}
The text was updated successfully, but these errors were encountered: