yusha uzumo
yusha uzumo

Reputation: 221

Accessing meteor production database in 2016

It seems the answer in this thread (Accessing Meteor production database) does not work anymore when you want to access a meteor production database in 2016. I want to access a meteor production database blah.meteor.com using

meteor mongo blah.meteor.com

instead what I get is:

connecting to: sg-mother1-6243.servers.mongodirector.com:27017/blah_meteor_com 2016-01-18T15:21:49.884+0200 Error: 18 { ok: 0.0, errmsg: "auth failed", code: 18 } at src/mongo/shell/db.js:1210 exception: login failed

Then I tried

meteor mongo --url blah.meteor.com

I get username cursor. I enter my meteor site username and press enter and then get password cursor. I enter password for the above username and press enter. I get presented with the following url:

mongodb://client-2ee8c14d:c1546ca8-4e7e-5883-0214-150b309fb4fb@SG-mother1-6242.servers.mongodirector.com:27017/blah_meteor_com

Then every time I re-enter

meteor mongo --url blah.meteor.com

I am assumed to have logged on already, and I just get presented with a similar url to the one I was presented with just above. I read the "meteor mongo command" documentation by entering:

meteor mongo --help

In the documentation I read the following line:

Instead of opening a shell, specifying --url (-U) will return a URL suitable for an external program to connect to the database. For remote databases on deployed applications, the URL is valid for one minute.

For the meaning, I went back to the thread (stackoverflow.com/questions/11801278/accessing-meteor-production-database) I mentioned in the beggining and read:

"So what it's saying is, the url provided by running the command with the --url option is for connecting to the database by some external application, i.e. other than meteor."

I don't know what other application can help me connect to meteor production database other than what I used to do in 2015, which is:

meteor mongo blah.meteor.com

I read somewhere that I can use the mongo shell intead but I don't know how to open it and I don't know the mongo installation directory when it is installed with meteor. I am using linux (fedora) OS.

How do I access meteor production database in 2016? Are there upgrades that happened that make me not to be able to access meteor production database as easily as I did in 2015?

Upvotes: 4

Views: 1280

Answers (2)

SBD
SBD

Reputation: 446

Since Meteor stopped supporting the use of .meteor domains and every developer needs to get his hosting by himself, I found a way accessing the remote's database by using mup or mupx. I wrote it in this post: https://stackoverflow.com/a/37439315/2908071

I hope this will help future people.

Upvotes: 0

Ser
Ser

Reputation: 2870

You are trying to connect to a database version 3.0 while your meteor mongo command still use the version 2.6.7 of mongo

Try this workaround :

  • Install Mongo version (3.x) directly on your machine.
  • Then run this command (should work on osx, linux and windows when sed is installed):

    mongo `meteor mongo --url XXX.meteor.com | sed 's/mongodb:\/\//-u /' | sed 's/:/ -p /' | sed 's/@/ /'`

Source: https://forums.meteor.com/t/meteor-mongo-xxx-meteor-com-giving-exception-login-failed-workaround/15289

Upvotes: 4

Related Questions