MongoDB是一種面向文檔的數據庫,而非傳統的關係型數據庫,能夠大多數的平臺如運行。 linux
當前最新版本爲:2.4 下載地址:http://www.mongodb.org/downloads mongodb
安裝步驟(windows): 數據庫
C:\mongodb\bin\mongod.exe --dbpath c:\mongodb\data\db若是出現錯誤碼,請以管理員身份運行cmd.
c:\mongodb\bin>mongod
This will start the main MongoDB database process. The waiting for connections message in the console output indicates that the mongod.exe process is running successfully.
db.test.save({a:1})
db.test.find()
c:\mongodb\bin>
C:mongodb\bin>mongod --dbpath "C:\mongodb\data\db" --logpath "C:\mongodb\data\log\MongoDB.log" --install --serviceName "MongoDB"
NET START MongoDB (開啓服務) ubuntu
NET stop MongoDB (關閉服務) windows