macにmongodbをinstallして起動するまで

brewでmongodbを入れて起動するまでを行ったので,そのメモです.

install

brew update
brew install mongodb

run

mongod

ここで以下のようなエラーが出ました.

2017-11-23T00:15:39.775+0900 I STORAGE  [initandlisten] exception in initAndListen: 29 Data directory /data/db not found., terminating

どうやら/data/dbが見つからないらしい

fix

sudo mkdir -p /data/db

mongodコマンドで起動することができました.

run mongo client

mongo

これでmongodbにアクセスできました.

以上.