Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using ExpressJS and Mongoose.

var MongoStore = require('connect-mongo')(express);
var sessionStore = new MongoStore({db: 'myappsession'});

app.use(express.session({ secret: "myappsecret", store:sessionStore }));

This results in an "MongoError: Error: unauthorized db". I suppose I would need to pass it my log-in credentials. I also have,

var mongoose = require('mongoose');
var db = mongoose.createConnection('<omitted username, password and address>', 'myappsession');

I am guessing connect-mongo needs this information to log into my database to create the session store?

Question

How do I pass connect-mongo the log-in information? Or am I doing this wrong?

share|improve this question

2 Answers

You need to use a MongoDB URI. Look at the docs here: http://www.mongodb.org/display/DOCS/Connections

mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]

So given you are connecting to a single server, simply use:

mongoose.createConnection('mongodb://[username:password@]host1[:port1]', 'myappsession');
share|improve this answer
+1 Thanks! But I found another solution for mongoose. Will share it by writing my own answer later. – Legendre Sep 23 '12 at 17:37
up vote 1 down vote accepted

In my case, since I am already actively using Mongoose, I ended up using a solution for Mongoose.

1. Install session-mongoose

https://github.com/donpark/session-mongoose

2. Use this tutorial as a guide.

http://mikevalstar.com/Blog/107/Coding_with_Nodejs_Part_31_Mongoose_Sessions

3. In particular, I had problem with this line of the tutorial.

url: "mongodb://localhost/mv"

This should be something like,

url: "username:password@url/testdatabase"

Sessions are then stored in the database named ""testdatabase" in the collection "sessions".

I hope this answer help someone avoid some frustration. :)

share|improve this answer
Care to explain why this is not a good solution? I am actually using this in my app. – Legendre Sep 24 '12 at 14:08
yeah, the tutorial url does not work – ktkaushik Mar 22 at 6:48
@ktkaushik - that tutorial used to work. You can google for "Coding_with_Nodejs_Part_31_Mongoose_Sessions" and access a cached version. – Legendre Mar 24 at 21:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.