1、下載mongodb安裝程序 *.msimongodb
在官網頁面下載程序:mongodb-win32-x86_64-2008plus-ssl-3.2.6-signed.msi (我當時下載,時間爲2016-5-4)windows
地址:https://www.mongodb.org/downloads#production安全
2、使用命令行安裝mongodbide
使用管理員權限打開cmd窗口,執行目錄到下載的文件目錄:(若是你下載的文件在D:\盤,cmd的執行目錄也應該在D:\盤)oop
執行命令:ui
msiexec.exe /q /i mongodb-win32-x86_64-2008plus-ssl-3.0.11-signed.msi ^ INSTALLLOCATION="D:\mongodb" ^ ADDLOCAL="all"
INSTALLLOCATION 是 安裝目錄google
ADDLOCAL 是 要安裝的組件 (Server,Router,Client,MonitoringTools,ImportExportTools,MiscellaneousTools) , 對應的二進制可執行文件 (mongod.exe,mongos.exe,mongo.exe,[mongostat.exe, mongotop.exe],[mongodump.exe, mongorestore.exe, mongoexport.exe, mongoimport.exe],[bsondump.exe, mongofiles.exe, mongooplog.exe, mongoperf.exe])spa
例如,還能夠這樣安裝:命令行
msiexec.exe /q /i mongodb-win32-x86_64-2008plus-ssl-3.0.11-signed.msi ^ INSTALLLOCATION="C:\mongodb" ^ ADDLOCAL="MonitoringTools,ImportExportTools,MiscellaneousTools"
3、運行mongodb 服務rest
mongodb默認數據存儲在安裝目錄的根目錄的\data\db\目錄下,如:mongodb安裝在d:\mongodb 目錄下,那麼對應的默認存儲目錄就是d:\data\db\目錄下.
建立(分區)根目錄下mongodb存儲數據目錄:
md \data\db
啓動mongodb服務:(cmd執行目錄應該在你安裝mongodb後的bin目錄下)
mongod.exe
或者其餘幾種啓動方式:
D:\mongodb\bin\mongod.exe --dbpath d:\test\mongodb\data
D:\mongodb\bin\mongod.exe --dbpath "d:\test\mongo db data"
注意:mongodb服務默認是運行在安全的環境中. 參考:https://docs.mongodb.org/v3.0/security/
中止monogdb的服務,使用Ctrl+C.
4、用mongodb客戶端鏈接服務端
在安裝目下的bin文件中:(也就是admin權限運行的cmd窗口執行目錄)
mongo.exe
這就算是鏈接服務端了,(前提是mongod.exe服務端在運行,默認端口27017未被佔用)
那麼如今你就能夠看看mongodb的使用指南了,,參考:https://docs.mongodb.org/v3.0/#getting-started
5、使用配置文件來安裝mongodb到系統服務.
建立配置文件:參考 https://docs.mongodb.org/v3.0/reference/configuration-options/
以及須要的目錄:
mkdir d:\data\db
mkdir d:\data\log
建立配置文件: (目錄最好在你安裝的mongodb目錄下,如:D:\mongodb\mongod.cfg)
systemLog:
destination: file
path: d:\data\log\mongod.log
storage:
dbPath: d:\data\db
執行命令,將mongodb服務安裝到系統服務中.
"D:\mongodb\bin\mongod.exe" --config "D:\mongodb\mongod.cfg" --install
or
sc.exe create MongoDB binPath= "C:\mongodb\bin\mongod.exe --service --config=\"C:\mongodb\mongod.cfg\"" DisplayName= "MongoDB" start= "auto"
啓動服務 和 中止服務 :
net start MongoDB
net stop MongoDB
刪除系統服務中mongodb服務:
"C:\mongodb\bin\mongod.exe" --remove
or
sc.exe delete MongoDB
好了,到如今爲止你已經安裝mongodb到window7系統中.(視系統差異,請參考官方安裝指南)
本文屬於原創,參考來自官方指南:https://docs.mongodb.org/v3.0/tutorial/install-mongodb-on-windows/ (是使用 google 搜索服務喔,^_^)
其餘參考 :使用mongoDB的免費開發課程