I have a Meteor application running on localhost: 3000.
Attempting to connect to it using Robomongo results in the error "Authorization you have missed."
.
My settings are identical to those that were sent in this answer , so I did not touch any other configuration tabs.
There should be no problem. Can you keep the connection and connect to Mongo?
First save the connection in Robomongo
/etc/mongodb.conf .
mongodb , .
- 27017
In fact, you are not connecting Robomongo to your meteor application, but only to MongoDB itself.
Default address is: localhost Default port: 27017
Authentication Not Required
make sure you enter the correct IP address. I have an invalid ip that gets the same response.
Edit
/etc/mongod.conf
Comment
bind_ip = 127.0.0.1
to
#bind_ip = 127.0.0.1
save.
Reboot Service:
service mongod restart
You are done.