Answers for "mac how to start mongodb"

CSS
2

mongodb mac

$ brew tap mongodb/brew
$ brew install [email protected]

/*TO START*/ 
brew services start mongo-community

/*TO STOP*/
brew services stop mongo-community
Posted by: Guest on February-13-2022
10

install mongodb in mac

// updated 2021
$ brew tap mongodb/brew
$ brew install [email protected]
Posted by: Guest on March-13-2021
2

install mongodb mac

Install brew using the -- /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"\
brew tap mongodb/brew
brew install [email protected]
Posted by: Guest on August-09-2021
-1

install mongodb on mac

brew install [email protected]
#Step 2
Posted by: Guest on March-31-2020
1

how to start mongodb in mac

command to activate mongodb through a terminal

mongod --dbpath /usr/local/var/mongodb --logpath /usr/local/var/log/mongodb/mongo.log --fork
Posted by: Guest on May-08-2020
0

install mongodb in mac

brew tap mongodb/brew
brew install mongodb-community@[version number]
Posted by: Guest on March-09-2022

Browse Popular Code Answers by Language