We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Readme file for local installations -> mongodb server setup is only for ubuntu not for mac
For setup of mongodb for mac the commands are :
brew install mongo sudo mkdir -p /data/db whoami sudo chown <output_of_whoami> /data/db
Open ./bashrc or .zshrc file and copy paste the contents below
export MONGO_PATH=<path_to_mongodb> export PATH=$PATH:$MONGO_PATH/bin
To run mongod instance : mongod Kill all instances of mongod in mac : mongo admin --eval "db.shutdownServer()”
The text was updated successfully, but these errors were encountered:
@mariobehling I have raised the PR for the above changes. This is my first opensource discussion so please guide me.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Readme file for local installations -> mongodb server setup is only for ubuntu not for mac
For setup of mongodb for mac the commands are :
brew install mongo
sudo mkdir -p /data/db
whoami
sudo chown <output_of_whoami> /data/db
Open ./bashrc or .zshrc file and copy paste the contents below
export MONGO_PATH=<path_to_mongodb>
export PATH=$PATH:$MONGO_PATH/bin
To run mongod instance :
mongod
Kill all instances of mongod in mac :
mongo admin --eval "db.shutdownServer()”
The text was updated successfully, but these errors were encountered: