如何设置MongoDB,使其可以作为Windows服务运行?
当前回答
不像其他答案。
在系统重启/重新启动时自动启动服务
MongoDB安装
窗户
(1)安装MongoDB
(2)添加bin到路径
(3)创建c:\data\db
(4)创建c:\data\log
(5)创建c:\data\mongo .cfg
systemLog:
destination: file
path: c:\data\log\mongod.log
storage:
dbPath: c:\data\db
(6)创建在重启时自动启动的服务。以管理员身份运行..
sc.exe create MongoDB binPath= "\"C:\Program Files\MongoDB\Server\3.4\bin\mongod.exe\" --service --config=\"C:\data\mongod.cfg\"" DisplayName= "MongoDB" start= "auto"
(7)启动服务。以管理员身份运行..
net start MongoDB
重要:即使显示“MongoDB服务已成功启动”,它也可能失败
要再次检查打开的控制面板>服务,确保MongoDB服务的状态为“Running”
如果不是,检查C:\data\log\mongo .log中的日志文件,找出失败的原因并修复它
(不要通过控制面板>服务启动MongoDB,使用..net start MongoDB
(8)最后,重新启动你的机器,运行MongoDB,重新启动时它仍将运行
如果你想杀死它…
net stop MongoDB
sc.exe delete MongoDB
其他回答
我认为如果你用——install命令行开关运行它,它会把它作为Windows服务安装。
mongod --install
也许值得先读一下这篇文章。当写入相关的注册表项时,相对/绝对路径似乎存在一些问题。
目前(直到2.4.4版本),如果任何路径(dbpath/logpath/config)包含空格,那么服务将不会启动,并显示错误:“服务没有响应控制功能”。
以下是安装MongoDB as Windows Service的步骤:
Create a log directory, e.g. C:\MongoDB\log Create a db directory, e.g. C:\MongoDB\db Prepare a configuration file with following lines dbpath=C:\MongoDB\db logpath=C:\MongoDB\log Place the configuration file with name mongod.cfg in folder "C:\MongoDB\" Following command will install the Windows Service on your sc.exe create MongoDB binPath= "\"C:\MongoDB\Server\3.4\bin\mongod.exe\" --service --config=\"C:\MongoDB\mongod.cfg\" DisplayName= "MongoDB 3.4" start= "auto" Once you run this command, you will get the [SC] CreateService SUCCESS Run following command on Command Prompt net start MongoDB
这对我来说很管用:
sc.exe create MongoDB binPath= "d:\MongoDB\bin\mongod.exe --service --config=d:\MongoDB\bin\mongod.config" displayname= "MongoDB 2.6 Standard" start= "auto"
逃脱binPath是失败的我在Mongo文档中描述
失败:
sc.exe create MongoDB binPath= "\"C:\Program Files\MongoDB 2.6 Standard\bin\mongod.exe\" --service --config=\"C:\Program Files\MongoDB 2.6 Standard\mongod.cfg\"" DisplayName= "MongoDB 2.6 Standard" start= "auto"
我尝试了所有的答案,然后按照https://docs.mongodb.org/manual/tutorial/install-mongodb-on-windows/#configure-a-windows-service-for-mongodb-community-edition描述的方式来做。
使用配置文件…
“C:\mongodb\bin\mongo .exe”——config“C:\mongodb\mongo .cfg”——安装
推荐文章
- 无法连接到服务器127.0.0.1:27017
- 如何创建数据库的MongoDB转储?
- 如何将MongoDB作为Windows服务运行?
- 如何监听MongoDB集合的变化?
- 什么时候不使用Cassandra?
- 如何在猫鼬排序?
- BASE术语解释
- .msi和setup.exe文件之间的具体区别是什么?
- 映射一个网络驱动器供服务使用
- js的Mongoose.js字符串到ObjectId函数
- 如何从java应用程序创建一个windows服务
- mongodb中使用ISODate的日期查询似乎无法正常工作
- 如何更新文档数组中的对象(嵌套更新)
- 在猫鼬模式中添加created_at和updated_at字段
- 如何更新mongodb中的多个数组元素