Mac通过brew安装mongodb4.2

LiYajie: 2021-04-26 mongodb

# 1. 第一步

brew tap mongodb/brew

# 2. 第二步

brew install mongodb-community@4.2

# 3. 启动数据库服务

# 3.1 创建mongo.conf

systemLog:
  destination: file
  path: /Users/xxx/xxx/data/mongodb/mongo.log
  logAppend: true
storage:
  dbPath: /Users/xxx/xxx/data/mongodb
net:
  bindIp: 127.0.0.1

# 3.2 启动

mongod --config /Users/xxx/xxx/data/mongo.conf

提示

/Users/xxx/xxx/data/mongo.conf 这个3.1创建的mongo.conf

# 4. 测试连接

mongo
LiYajie 发布于: 2021-04-26