「MongoDB」macにmongoDBをインストールする方法

2021年8月29日

操作方法
1.brewをインストール
brew tap mongodb/brew
brew install mongodb-community

2.mongoDB起動
brew services start mongodb-community

3.バージョンを確認
> db.version()
> show dbs

DBを停止
brew services stop mongodb-community

4.DBを作成
> use testdb
> db
Collectionを追加
> db.createCollection(“testCollection")

DBを削除
> db.dropDatabase();

MongoDB

Posted by arkgame