Decipher An Error Connecting To A Mongo Instance Hosted At .meteor.com
I'd like to use python to connect to an instance of mongo tied to a meteor app hosted at meteor.com. I've gotten the URL for my app via the meteor mongo -U command
Solution 1:
It looks like your database is using authentication and you haven't specified a username/password. In python this is done with db.authenticate(username, password)
. Details here: http://api.mongodb.org/python/2.1.1/api/pymongo/database.html
Post a Comment for "Decipher An Error Connecting To A Mongo Instance Hosted At.meteor.com"