1. 程式人生 > >Mongod服務器安裝

Mongod服務器安裝

完成 -m and ice 服務 管理員 mat fix oca

第一步下載mongodb

目前最新版本:3.4.4

第二步安裝vc_redist.x64

服務器安裝可能會需要到,如果沒有出現以下錯誤不需要安裝

---------------------------
mongod.exe - System Error
---------------------------
The program can‘t start because api-ms-win-crt-runtime-l1-1-0.dll is missing from your computer. Try reinstalling the program to fix this problem.
---------------------------
OK
---------------------------

註意事項:

安裝完成後可以運行安裝服務

mongod.exe --bind_ip yourIPadress --logpath "C:\data\dbConf\mongodb.log" --logappend --dbpath "C:\data\db" --port yourPortNumber --serviceName "YourServiceName" --serviceDisplayName "YourServiceName" --install

如果不能正常安裝服務,確保CMD一定要以管理員運行

安裝完出現服務不能啟用可能會出現以下錯誤

---------------------------
Services
---------------------------
Windows could not start the MongoDBServices on Local Computer. For more information, review the System Event Log. If this is a non-Microsoft service, contact the service vendor, and refer to service-specific error code 100.
---------------------------
OK
---------------------------

可以去檢查指定的mongodb.log文件,日誌記錄非常詳細幫助排查問題所在。一定註意配置的文件地址

Mongod服務器安裝