Home > Software engineering >  How to check How I installed MongoDB
How to check How I installed MongoDB

Time:07-12

I am making full stack application(MERN) using MongoDB Atlas.

I want to access to mongod.conf to change some configuration on my mongoDB on my Mac OS Big Sur(Version 11.5.2).

on the internet, almost all of information says, if I installed it through Homebrew, it should be in /usr/local/etc/mongod.conf.

However I don't find it in this directory, so I must have installed it from somewhere else.

How do I know how I installed something in my mac?

Also, Is it possible that I am using MongoDB Atlas without installing them in my machine?

Thank you

CodePudding user response:

With brew if more easy, documentation enter image description here

It's not needed to have installed locally, you can use the free tier from MongoDB Atlas or mlab. You will need to setup the user access permission and the url where your database is stored.

Finally you can use the command "mongo" in the terminal and you will see if it's installed correctly.

  • Related