MongoDBを利用する機会が出てきたので、開発用にMacにインストールした時のまとめ。

環境

  • Mac:macOS Sierra
  • MongoDB:3.4.2

参考サイト

インストール手順

Homebrewのパッケージをupdate

$ brew update

mongoDBインストール

$ brew install mongodb

MongoDB実行

最近は、以下のメッセージが出て、”/data/db”のディレクトリは自分で作らないといけないらしい。

Before you start MongoDB for the first time, create the directory to which the mongod process will write data. By default, the mongod process uses the /data/db directory. If you create a directory other than this one, you must specify that directory in the dbpath option when starting the mongod process later in this procedure.

データ格納用ディレクトリ作成

$ sudo mkdir -p /data/db
$ sudo chmod 777 /data/db

起動

$ mongod

終了

Control + Cにて終了させる

クライアント側起動コマンド

$ mongo

最後に…

MongoDBをJavaでEclipseから動かしたいので、そのまとめは次の機会に。。。

 

ちなみにwimdows版のインストールはココが参考になりますね。
MongoDB の インストール (Windows)

さらにLinax系のインストールはココが参考になりますね。
CentOS 7 で MongoDB 3.0 をインストール