我在我的 Ubuntu 服务器(Digital Ocean)上运行了一个 Meteor 应用程序。我使用 Meteor Up (MUP) 来部署和保持应用程序运行。一切正常。
但是,当我尝试在同一台服务器上部署第二个应用程序时,连接到 MongoDB 时出现问题。我收到一条长且不可读的错误消息,开头为“调用部署过程:失败”,然后以
Waiting for MongoDB to initialize. (5 minutes)
connected
myapp start/running, process 25053
Waiting for 15 seconds while app is booting up
Checking is app booted or not?
myapp stop/waiting
myapp start/running, process 25114
该应用程序拒绝运行。我已经尝试了很多方法来解决这个问题,如果需要更多信息,我会编辑这篇文章,但我不确定什么是相关的。本质上我不明白错误消息,所以我需要知道到底发生了什么?
编辑:我想补充一点,如果我进入项目文件夹并使用“流星”命令,我的应用程序运行良好。一切都按预期运行。只有当我尝试使用 MUP 将其部署为长期生产模式时,我才会收到此错误。
编辑:我继续尝试 mupx 而不是 mup。这次我什至无法通过安装过程,我收到以下错误消息:
[Neal] x Installing MongoDB: FAILED
-----------------------------------STDERR-----------------------------------
Error response from daemon: no such id: mongodb
Error: failed to remove containers: [mongodb]
Error response from daemon: Cannot start container c2c538d34c15103d1d07bcc60b56a54bd3d23e50ae7a8e4f9f7831df0d77dc56: failed to create endpoint mongodb on network bridge: Error starting userland proxy: listen tcp 127.0.0.1:27017: bind: address already in use
但我不明白为什么!Mongod 显然已经在端口 27017 上运行,第二个应用程序应该只是向该实例添加一个新数据库,对吗?我不知道我在这里缺少什么,为什么 MUP 无法访问 MongoDB。