我正在使用rails 3.2
和mongoid
。
我做了这些步骤来设置我的数据库:
// 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)
在我的mongo.yml
我有:
production:
host: localhost
port: 27017
username: John
password: passwordForJohn
database: namedatabase
您可以在http://www.mongodb.org/display/DOCS/Security+and+Authentication中看到
我的问题是现在我尝试运行:
rake db:seed
我现在得到这个错误:
rake aborted!
Connection refused - connect(2)
我该如何解决?