mongodb 下載
mongodb下載地址
下載 .msi 文件,下載后雙擊該文件,按照提示安裝即可。

image

image

image
MongoDB將數(shù)據(jù)目錄存儲(chǔ)在 db 目錄下。但是這個(gè)數(shù)據(jù)目錄不會(huì)主動(dòng)創(chuàng)建,我們?cè)诎惭b完成后需要?jiǎng)?chuàng)建它。執(zhí)行以下命令
D:\mongodb\bin\mongod --dbpath D:\mongodb\data\db
然后訪問(wèn) 127.0.0.1:27017,顯示以下文字代表mongodb 服務(wù)啟動(dòng)成功

配置 mongodb 服務(wù)
在 d:\mongodb 下創(chuàng)建配置文件 mongod.cfg
配置文件內(nèi)容如下:
systemLog:
destination: file
path: d:\mongodb\data\log\mongod.log
storage:
dbPath: d:\mongodb\data\db
管理員身份打開(kāi)cmd 進(jìn)入 d:\mongodb\bin
mongod --config "d:\mongodb\mongod.cfg" --install --serviceName "MongoDB"
通過(guò)命令行
net start MongoDB 啟動(dòng)或命令行
net stop MongoDB 關(guān)閉 MongoDB 服務(wù)
配置系統(tǒng)環(huán)境

配置系統(tǒng)環(huán)境