使用 mongod.exe 运行 MongoDB
我的 mongoDB 在我的电脑上运行良好。
但每次我想运行它时,我应该转到 CMD 并输入:
c:\mongoDB\bin\mongod --dbpath c:\mongoDB\data\db
如果我关闭 CMD 窗口,连接就会结束。
所以我想知道如果我想将我的应用程序上传到在线网站,mongoDB 应该如何工作!?
谢谢
I have the mongoDB works well in my computer .
but every time I want to run it I should go to the CMD and type :
c:\mongoDB\bin\mongod --dbpath c:\mongoDB\data\db
and if I close the CMD window the connection will ends up .
So I'm wondering if I want to upload my App to online website , how should the mongoDB works !?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 mongodb 作为 Windows 服务运行
例如设置为 Windows 服务
然后您可以使用以下命令从 CMD 启动该服务:
或者,您可以通过控制面板 -> 启动它管理工具 ->服务。然后您可以将其设置为在 Windows 启动时自动启动。
You can run mongodb as a Windows service
e.g. set up as a windows service
Then you can start the service from CMD using:
Or, you can start it via Control Panel -> Administrative Tools -> Services. You can then just set it to start automatically on Windows start.