Has anyone tried a connection with mongoDB v3 authentication SCRAM-SHA-1 enabled from Hunk?
I am getting error using following indexes.conf:
[provider:local-mongodb]
vix.mongodb.host = ma1.splunktest.com:27017
vix.output.buckets.max.network.bandwidth = 0
vix.description = Test MongoDB with Hunk
vix.mongodb.auth.mechanism = SCRAM-SHA-1
vix.mongodb.auth.password = north123$
vix.mongodb.auth.username = northuser
Splunk query shows following error:
07-22-2015 00:06:32.152 ERROR ERP.local-mongodb - MongoDBERP - Exception while executing search process.
07-22-2015 00:06:32.152 ERROR ERP.local-mongodb - com.mongodb.MongoException: not authorized for query on Northwind.products
07-22-2015 00:06:32.152 ERROR ERP.local-mongodb - at com.mongodb.QueryResultIterator.throwOnQueryFailure(QueryResultIterator.java:214)
Any update on this Hunk App for MongoDB supports 'SCRAM-SHA-1' auth...?
does anyone able to connect with mongoDB with auth enabled in Hunk App for MongoDB?
Please provide a working configuration that works with any type of authentication. I have tried various combinations with no luck:(
Thanks
The MongoDB App allows to specify 4 types of authentication mechanism, namely Plain, Kerberos, CR(Challenge–Response) and X509
After you install the App, click on the App main page inside the Hunk UI to see the detail documentation for these options.
I am aware of the supported 4 types of authentication , I tried type "CR" and "SCRAM-SHA-1" that is replaced in MongoDB ver-3 for CR type. None of them is working.
Splunk ver - 6.2
indexes.conf: (this goes in .../app/local/MongoDbApp/indexes.conf)
[provider:local-mongodb]
vix.mongodb.host = splunkt-lin.corp.apple.com:27017
vix.output.buckets.max.network.bandwidth = 0
vix.description = Test MongoDB with Hunk
vix.mongodb.auth.mechanism = CR
vix.mongodb.auth.password = north123$
vix.mongodb.auth.username = northuser
This one goes to .../apps/search/local/indexes.com
[northwind_customers]
vix.description = MongoDB Northwind - Customers
vix.input.1.path = /tmp
vix.mongodb.collection = customers
vix.mongodb.db = Northwind
vix.mongodb.field.time = _id
vix.mongodb.field.time.format = ObjectId
vix.provider = local-mongodb
disabled = 0
[northwind_products]
vix.description = with Auth enabled
vix.input.1.path = /tmp
vix.mongodb.collection = products
vix.mongodb.db = Northwind
vix.mongodb.field.time = _id
vix.mongodb.field.time.format = ObjectId
vix.provider = local-mongodb
disabled = 0
any updates on this? I'm also stuck with the same issue
Same credential works with DB-Connect using Mongo-JDBC Drive. It seems that this is not a MongoDB side authentication issue?