Mongoose Connection Mongoose Connection mongodb mongodb

Mongoose Connection


When you call mongoose.connect, it will set up a connection with the database.

However, you attach the event listener for open at a much later point in time (when a request is being handled), meaning that the connection is probably already active and the open event has already been called (you just weren't yet listening for it).

You should rearrange your code so that the event handler is as close (in time) to the connect call as possible:

var mongoose = require('mongoose');mongoose.connect('mongodb://localhost/test');var db = mongoose.connection;db.on('error', console.error.bind(console, 'connection error:'));db.once('open', function callback () {  console.log("h");});exports.test = function(req,res) {  res.render('test');};


The safest way to do this, it to "listen for the connect event". This way you don't care how long it takes for the DB to give you a connection.

Once that is done - you should start the server. Also.. config.MONGOOSE is exposed across your app, so you only have one DB connection.

If you want to use mongoose's connection, simply require config in your module, and call config.Mongoose. Hope this helps out someone!

Here's the code.

var mongoURI;mongoose.connection.on("open", function(ref) {  console.log("Connected to mongo server.");  return start_up();});mongoose.connection.on("error", function(err) {  console.log("Could not connect to mongo server!");  return console.log(err);});mongoURI = "mongodb://localhost/dbanme";config.MONGOOSE = mongoose.connect(mongoURI);


I had the same error popping up. Then I found out that I didn't have a mongod running and listening for connections. To do that you just need to open another command prompt (cmd) and run mongod