Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

error:a hook ('orm') failed to load when lifting sails app using mongo DB

I get this error: a hook ('orm') failed to load when trying to lift a sails app using mongoDB. This my connections.js file:

module.exports.connections = {
  mongodb: {
    adapter   : 'sails-mongo',
    host      : 'localhost',
    port      : 27017,
    database  : 'mydb1'
  }
};

And this is my models.js file:

module.exports.models = {
  connection: 'mongodb'
};

And this is my local.js file:

module.exports = {
  connections: {
    mongodb: {
      host      : 'localhost',
      port      : 27017,
      database  : 'mydb1'
    }
  }
}

Sails v 0.10.1

Any idea why this could be happening?

Thanks

like image 976
Ebtessam Zoheir Avatar asked Aug 17 '14 10:08

Ebtessam Zoheir


1 Answers

All you need to do is start your mongodb.

Navigate to : path_to_your_mongodb_installation_folder\MongoDB\bin\mongod.exe example : C:\Program Files\MongoDB 2.6 Standard\bin

Let us know if this helps!

like image 59
Rahul Mishra Avatar answered Nov 15 '22 04:11

Rahul Mishra