I am using rails 3.2
and mongoid
.
I am doing these steps to install my database:
// Add an Admin User (to the admin db) use admin db.addUser("theadmin", "anadminpassword") // Use your database use superuser // Add a user (to your database) db.addUser("John", "passwordForJohn") // show all users: db.system.users.find() // add readonly user (kinda cool) db.addUser("readonly", "passwordForJohn", true)
In my mongo.yml
, I have:
production: host: localhost port: 27017 username: John password: passwordForJohn database: namedatabase
You can see at http://www.mongodb.org/display/DOCS/Security+and+Authentication
My problem is that now I am trying to run:
rake db:seed
Now I get this error:
rake aborted! Connection refused - connect(2)
How can i fix this?
source share