標籤:style blog http io ar color os 使用 sp
MongoDB的安裝有好多種安裝方法,有普通青年的方式,也有2B青年的源碼編譯方式。我只想快速的裝起來用一下,所以我選最簡單的HomeBrew。
請參考官方文檔 : http://docs.mongodb.org/manual/tutorial/install-mongodb-on-os-x/
更新Homebrew的package資料庫,在Mac的終端中輸入:
$ brew update
然後耐心等待,這個沒有任何顯示,估計要幾分鐘,取決於網路的速度。然後就列出了一大堆東西,就可以進行後續步驟了。
開始安裝MongoDb
$ brew install mongodb
然後繼續等待MongoDb下載完成。這個比較貼心了,有下載進度百分比。
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/mongodb-2.6
######################################################################## 100.0%
==> Pouring mongodb-2.6.5.mavericks.bottle.2.tar.gz
==> Caveats
To have launchd start mongodb at login:
ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
Then to load mongodb now:
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
Or, if you don‘t want/need launchctl, you can just run:
mongod --config /usr/local/etc/mongod.conf
==> Summary
?? /usr/local/Cellar/mongodb/2.6.5: 17 files, 331M
dus-MacBook-Pro:CountMeInServer dudaniel$
啟動MongoDb
上面最後提示的直接啟動MongoDb的方法.
串連到MongoDb,可以用命令列工具mongo串連:
$ mongo
MongoDB shell version: 2.6.5
connecting to: test
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
http://docs.mongodb.org/
Questions? Try the support group
http://groups.google.com/group/mongodb-user
還可以找個可視化的工具。MongoDb的可視化管理工具有很多,這裡有個列表http://docs.mongodb.org/ecosystem/tools/administration-interfaces/, 經人推薦試用了一下Robomongo,這個是跨平台的,windows,Max, Linux下都可以使用,不錯。
其實這在其次,MongoDb的用法大多數還都是編程使用,比如額nodeJs結合使用,正在探索。
Mac OX上安裝MongoDb