Install Mongo on MacOS
First you need tap official #mongo brew:
brew tap mongodb/brewThen just install mongo with:
brew install mongodb-communityThere is one tool which people often want to install on its own, and that’s the MongoDB shell.
brew install mongodb-community-shellYou can also install only database tools for managing mongo database:
brew install mongodb-database-toolsStarting mongo
Section titled “Starting mongo”brew services start mongodb-communityor stop
brew services stop mongodb-community