Report this

What is the reason for this report?

After I install mongodb on debian/centos how do I get the mongo_url so I can connect my app to my mongodb?

Posted on June 24, 2017

This is rather a newbie question. Bear with me. After I install mongodb on debian/centos how do I get the mongo_url so I can connect my app to my mongodb?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

@flameuzumo

But your code is separated from the database. Meteor.js just installs MongoDB as part of it’s setup. From what I can see, it’s installed on port 3001.

I don’t know what mongo_url is, but I guess it’s the configuration parameter in Meteor.js, so in that case, it would be mongodb://localhost:27017/myproject or however you have setup your MongoDB - so if you used authentication in the setup, your url changes to mongodb://username:password@localhost:27017/myproject.

You would probably find much better help in the forums of Meteor: https://forums.meteor.com/

Hi @flameuzumo MongoDB is by default listening on localhost port 27017, so your “url” is normally:

localhost:27017

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.