https://stackoverflow.com/questions/57856809/installing-mongodb-with-homebrew
brew services stop mongodb
brew uninstall homebrew/core/mongodb
brew tap mongodb/brew
brew install mongodb-community
brew services start mongodb-community
mkdir -p ~/data/db
sudo chown -R `id -un` ~/data/db
# Enter your password
mongod
# Run
mongo
# exit
quit()