标签:配置 path 文件 exe cmd nbsp -- 使用配置 命令
Win2012R2 下 MongoDB 服务配置命令:
CMD 命令
安装服务,使用指定的 数据库路径和日志路径,并绑定所有端口可访问
"D:\MongoDB\Server\4.0\bin\mongod.exe" --dbpath=D:\MongoDB\Data\db --logpath=D:\MongoDB\Data\logs\MongoDB.log --bind_ip_all --install --serviceName "MongoDB"
安装服务, 使用配置文件 mongod.cfg 启动:
"D:\MongoDB\Server\4.0\bin\mongod.exe" --config "D:\MongoDB\Server\4.0\bin\mongod.cfg" --install --serviceName "MongoDB"
删除服务:
sc delete “MongoDB“
标签:配置 path 文件 exe cmd nbsp -- 使用配置 命令
原文地址:https://www.cnblogs.com/Tirisfal/p/12981356.html