标签:
一、安装 Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
如果已经安装过 Homebrew,请先更新:
brew update
二、安装 MongoDB
brew install mongodb [ --with-openssl ]
三、配置 MongoDB
1. 编辑 mongod.conf 文件,默认在 /usr/local/etc中:
systemLog: destination: file # 日志文件 path: /usr/local/var/log/mongodb/mongo.log logAppend: true storage: # 数据库目录 dbPath: /usr/local/var/mongodb net: # 指定可访问的 IP bindIp: 127.0.0.1
2. 编辑 .bash_profile 文件,添加 alias:
alias mongostart="mongod --config /usr/local/etc/mongod.conf"
更多安装方式请参考官方文档:https://docs.mongodb.com/manual/tutorial/install-mongodb-on-os-x/
标签:
原文地址:http://www.cnblogs.com/guobinwu/p/5551607.html