1:首先去官網(wǎng)下載程序,我用的是1.4.3版本,地址:http://downloads.mongodb.org/win32/mongodb-win32-i386-1.4.3.zip
2:創(chuàng)建一個(gè)DB文件夾,我是放到D盤,路徑: D:\Web\mongo\db
3:打開CMD設(shè)置數(shù)據(jù)庫的路徑: D:\Web\mongo\bin\mongod.exe --dbpath=d:\Web\mongo\db
4:重新打開CMD輸入: D:\Web\mongo\bin\mongo.exe,如果出現(xiàn)下面提示,則恭喜你已經(jīng)安裝成功了
D:\Web\mongo\bin>d:\Web\mongo\bin\mongo.exe
MongoDB shell version: 1.4.0
url: test
connecting to: test
type "exit" to exit
type "help" for help
>
5:注冊Windows7服務(wù),免得以后麻煩,每回要啟動(dòng)。再次打開CMD:
D:\Web\mongo\bin\mongod.exe --dbpath="\"D:\Web\mongo\db\"" --service
如果上面的沒有注冊成功的話,可以修改注冊表:
找到項(xiàng)名稱:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\MongoDB
修改ImagePath的數(shù)據(jù)如下:
"D:\Web\mongo\bin\mongod.exe" --dbpath="\"D:\Web\mongo\db\"" --service
修改你的路徑,然后把加背景顏色的全部拷進(jìn)去,標(biāo)點(diǎn)符號不要漏掉。到這里基本上就已經(jīng)注冊服務(wù)成功了。
下面是測試數(shù)據(jù)庫是否連接
D:\mongodb\bin>mongo.exe
MongoDB shell version: 1.4.0
url: test
connecting to: test
type "exit" to exit
type "help" for help
> use test
switched to db test
> db.foo.save({id:1,name:"cztom"})
> db.foo.find()
{ "_id" : ObjectId("4bc1854e0140000000006f05"), "id" : 1, "name" : "cztom" }
聯(lián)系客服