This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# select one of available versions | |
brew search mongodb | |
# install | |
brew install mongodb@3.6 | |
# add executable to your path | |
echo 'export PATH="/usr/local/opt/mongodb@3.6/bin:$PATH"' >> ~/.bash_profile | |
. ~/.bash_profile | |
# create db path | |
sudo mkdir -p /data/db | |
sudo chown -R `id -un` /data/db | |
# run mongod | |
mongod |
No comments:
Post a Comment