windows下的mongodb安装与配置

时间:2022-05-23 01:05:39

一、下载mongodb安装文件

https://www.mongodb.com/download-center/community

选择zip压缩包方式,如:mongodb-win32-x86_64-2008plus-ssl-4.0.5.zip

二、解压mongodb安装包,并移动到指定位置,如:E:\mongodb,在该目录下创建data/db和data/log文件夹,分别用来存放数据文件和日志。

三、在E:\mongodb目录下创建配置文件mongo.config

dbpath = E:\mongodb\data\db
logpath = E:\mongodb\data\log\mongo.log
port = 27017

mongo.log日志文件需要我们自已创建。  

四、以管理员方式运行cmd,进入E:\mongodb\bin目录,运行如下命令。

mongod.exe --config "E:\mongodb\mongo.config" --install --serviceName "MongoDB"

  

五、启动mongodb服务

net start MongoDB

  

六、关闭mongodb服务并删除服务

net stop MongoDB
mongod.exe --config "E:\mongodb\mongo.config" --remove --serviceName "MongoDB"