1、下載合適的mongodb
官網: http://www.mongodb.org/downloads
用於 Windows 的 MongoDB 有三個版本:
- MongoDB for Windows Server 2008 R2 版僅運行於 Windows Server 2008 R2、Windows 7 64-bit 和更新的 Windows 版本。此版本充分利用 Windows 平台的新增強,不能在舊版 Windows 上運行。
- MongoDB for Windows 64-bit 僅運行於 Windows XP 以上的 64 位元 Windows 版本,包括 Windows Server 2008 R2 和 Windows 7 64-bit。
- MongoDB for Windows 32-bit 可運行於任何 Windows XP 以上的 32 位 Windows 版本。32 位版本 MongoDB 僅適用於舊系統以及測試和開發系統應用。
我下載是最新版本是2.2.0,安裝時系統報出了“mongodb啟動出現 無法定位程式輸入焦點 InterlockedCompareExchange64” 的錯誤。查看文檔才知道,2.2.0不支援XP系統(Changed in version 2.2: MongoDB does not support Windows XP. Please use a more recent version of Windows to use more recent releases of MongoDB.),重新下載的老版本。
2、解壓安裝包到合適路徑
解壓安裝包到D:\data\mongodb路徑。
3、建立資料檔案夾
建立資料檔案件D:\data\db
4、啟動Mongodb
執行如下命令:
D:\data\mongodb\bin\mongod.exe --dbpath D:\data\db
如果路徑中包含空格,使用雙引號括起整個路徑,例如:
D:\data\mongodb\bin\mongod.exe --dbpath "D:\data\db test"
5、為MongoDB 設定log目錄,把MongoDB 作為 Windows 服務