Mac mongoDB DBを インストールする方法

環境
MongoDB 6.0.2

1.mongoDBインストール
brewを使用してインストールを行います。

brew tap mongodb/brew
brew install mongodb-community

2.mongoDB DB起動
brew services start mongodb-community

バージョンを確認します。

mongo
> db.version()

存在する DBの確認は以下で可能です。
> show dbs

mongoDB DB設定ファイル
/usr/local/etc/mongod.conf

DBを作成します
> use example
switched to db example

exampleという dbが作成されました

> db
example

Collectionに追加します。

> db.createCollection("exampleCollection")
{ "ok" : 1 }

 

MongoDB

Posted by arkgame