启动本地mongo

进入mongo目录

cd /usr/local/mongod

./bin/mongod —dbpath=/Users/zhuyi/data/db

如果dbpath不正确

可以使用

./bin/mongod —config=./bin/mongod.conf 来修改

mongod.conf

systemLog:
  destination: file
  path: /Users/zhuyi/data/db/mongod.log
  logAppend: true
storage:
  dbPath: /Users/zhuyi/data/db
net:
  bindIp: 127.0.0.1

你可能感兴趣的:(启动本地mongo)