montecruiseto
montecruiseto

Reputation: 544

Robomongo & Meteor mongodb localhost connection failure

I have a Meteor app running on localhost:3000.

Trying to connect to it with Robomongo results in "Authorization skipped by you" failure.

enter image description here.

My settings are identical to the ones posted in this answer, so I didn't touch any of the other config tabs.

Upvotes: 4

Views: 8581

Answers (6)

Deepak Kar
Deepak Kar

Reputation: 1

be sure that you have entered a correct ip address. I have enterd an incorrect ip was getting same responce.

Upvotes: 0

asdf
asdf

Reputation: 1032

Actually you don't connect Robomongo with your meteor app but just with the MongoDB itself.

Default address is: localhost
Default port: 27017

Authentication is not needed

Upvotes: 0

You should see the file /etc/mongodb.conf, and configure with that information.

In my case, i bad wrote the mongodb port, and corrected this and it worked.

The default port is 27017

Upvotes: 0

Sinan Eldem
Sinan Eldem

Reputation: 5738

Edit

/etc/mongod.conf

Comment in

bind_ip = 127.0.0.1

to

#bind_ip = 127.0.0.1

save.

Restart service:

service mongod restart

You are done.

Upvotes: -1

Manjeet Singh
Manjeet Singh

Reputation: 2398

First Save the connection in Robomongo

  • please make sure that your project is run in the local host .
  • and open the Robomongo GUI tool and open the save connection.

Upvotes: 0

Firdaus Ramlan
Firdaus Ramlan

Reputation: 1146

Shouldn't be a problem. Can you save the connection and connect to Mongo?

Upvotes: 9

Related Questions