Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Connection refused - connect(2) with rake db:seed on Mongodb

I am using rails 3.2 and mongoid.

I make these steps for setting 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 in http://www.mongodb.org/display/DOCS/Security+and+Authentication

My problem is that now I try run:

rake db:seed

I get now this error:

rake aborted!
Connection refused - connect(2)

How can I fix it?

like image 758
hyperrjas Avatar asked Jun 14 '12 09:06

hyperrjas


1 Answers

The problem was fixed:

The problem was with solr server:

If you have solr server in your project:

1º Make sure that the Solr server is started before you seed:

rake sunspot:solr:start
rake sunspot:reindex

2º Run your seed:

rake db:seed

Regards

like image 153
hyperrjas Avatar answered Nov 06 '22 10:11

hyperrjas