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 bemongodb://localhost:27017/myproject
or however you have setup your MongoDB - so if you used authentication in the setup, your url changes tomongodb://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
port27017
, so your “url” is normally: