I'm not an expert of mongoDB and I tried to change the conf file to activate the authentication. This ultimately resulted in mongoDB completely stuck :
- My node.js apps (using mongoose) can't connect to mongo
- If I use the mongo shell and try to type basic stuff like "show dbs" I always have an answer looking like that :
root@*:~# mongo
MongoDB shell version: 1.6.3
Mon Jan 21 12:46:26 * warning: spider monkey build without utf8 support. consider rebuilding with utf8 support
connecting to: test
show dbs
assert failed : listDatabases failed:{
"assertion" : "unauthorized db:admin lock type:-1 client:127.0.0.1",
"assertionCode" : 10057,
"errmsg" : "db assertion failure",
"ok" : 0
}
Mon Jan 21 12:46:33 uncaught exception: assert failed : listDatabases failed:{
"assertion" : "unauthorized db:admin lock type:-1 client:127.0.0.1",
"assertionCode" : 10057,
"errmsg" : "db assertion failure",
"ok" : 0
Things I tried :
- Going to mongo conf file to desactivate authentication (and restarting mongo and even my server)
PS : Sorry for the formatting, can't figure how to make it right..