在Mac OS X上安装mongoDB
构成
MacBook Air (11英寸,2013年中期)
处理器:1.3 GHz 英特尔 Core i5
内存:4 GB 1600 MHz DDR3
操作系统:macOS Sierra 10.12.5
安装brew
不会使用brew的人请访问官方网站并执行命令,
会使用的人请忽略此步骤。
用中文将以下内容转述:
/usr/bin/ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
使用curl命令下载https://raw.githubusercontent.com/Homebrew/install/master/install的内容,并通过ruby命令执行。
安装mongoDB
使用Homebrew来安装MongoDB。
brew update
brew install mongodb
确认MongoDB
启动MongoDB
mongo
使用数据库
//データベースを選択
use test_database
//データを保存する
db.test_collection.insert({"name":"yamada","age":20})
//データを取得する
db.test_collection.find()
如果能得到这样的结果,就没问题。
{ "_id" : ObjectId("59847cc01516e38618ab3a1b"), "name" : "yamada", "age" : 20 }