標籤:
1)、下載MongoDB http://downloads.mongodb.org/win32/mongodb-win32-i386-2.4.5.zip 2)、設定MongoDB目錄 將其解壓到 d:\,再重新命名為mongodb,路徑為d:\mongodb 3)、設定資料檔案路徑 在d:盤建一個data檔案夾,在data檔案夾中建立db檔案夾,路徑d:\data\db 4)、啟動MongoDB服務 進入 cmd 提示符控制台, D:\mongodb\bin\mongod.exe --dbpath=d:\data\db Mon Apr 16 08:50:54 [initandlisten] waiting for connections on port 27017 MongoDB服務端的預設串連連接埠:27017 5)、將MongoDB作為 Windows 服務隨機啟動 先建立D:\mongodb\logs\mongodb.log檔案,用於儲存MongoDB的記錄檔, 再安裝系統服務: D:\mongodb\bin\mongod --dbpath=d:\data\db --logpath=d:\mongodb\logs\mongodb.log --install (如果提示:Error connecting to the Service Control Manager這種錯誤,則應該使用管理員身份運行cmd 找到命令處理常式C:\Windows\System32\cmd.exe 右鍵:以管理員身份運行 ) all output going to: d:\mongodb\logs\mongodb.log Creating service MongoDB. Service creation successful. Service can be started from the command line via ‘net start "MongoDB"‘. D:\>net start mongodb Mongo DB 服務已經啟動成功。 D:> 注意:如果需要卸載服務,執行命令:sc delete MongoDB 6)、用戶端串連驗證 新開啟一個CMD輸入:d:\mongodb\bin\mongo, d:\mongodb\bin\mongo MongoDB shell version: 2.0.4 connecting to: test 7)、查看MongoDB日誌 查看D:\mongodb\logs\mongodb.log檔案,即可對MongoDB的運行情況進行查看或排錯。 http://localhost:27017/可以看到如下提示: You are trying to access MongoDB on the native driver port. For http diagnostic access, add 1000 to the port number 如此,MongoDB資料庫服務已經成功啟動了。 http://localhost:28017/管理
win7安裝32位mongodb