1

我正在尝试使用 mup 部署 Meteor 应用程序,它一直给我这个错误:

[xxx.xxx.xxx.xxx] x Start Mongo: FAILED

          ------------------------------------STDERR------------------------------------
          Error response from daemon: Container a1617b2aaaa3fd4aeb8e1241ec90ae32b4a88b0df9c95e5d73de608b68788ef0 is not running
    docker: Error response from daemon: driver failed programming external connectivity on endpoint mongodb (2f5db292f7022a39dfe3ff5fdf5ed7de38ddc7bb6f787625cd0fb45a5fa10cd6): Error starting userland proxy: listen tcp 127.0.0.1:27017: bind: address already in use.

          ------------------------------------STDOUT------------------------------------
          3.2.15: Pulling from library/mongo
    Digest: sha256:ef3277c7221e8512a1657ad90dfa2ad13ae2e35aacce6cd7defabbbdcf67ca76
    Status: Image is up to date for mongo:3.2.15
    mongodb
    mongodb
    Running mongo:3.2.15
    97a28fe9d2dca6130ffe6622e662a230ecea34214920673c574a4d3e57fafb3c

          ------------------------------------------------------------------------------

我已经检查过了,我可以通过 ssh 连接到服务器。我正在使用来自 Digital Ocean 的 One-click droplets 之一,因为它已经安装了 Mongodb。服务器上的 Mongodb 版本是 3.4,在我的应用程序中我使用的是 3.2.15,我不知道是否应该降级或升级其中一个,或者即使问题存在。

我的 mup.js 文件如下所示:

module.exports = {  servers: {
one: {
  host: 'xxx.xxx.xxx.xxx',
  username: 'root',
  pem: '~/.ssh/id_rsa'
  // or neither for authenticate from ssh-agent
}
},
meteor: {
name: 'myApp',
path: '../myApp/',

servers: {
  one: {},
},

buildOptions: {
  serverOnly: true,
},

env: {
  // If you are using ssl, it needs to start with https://
  ROOT_URL: 'http://app.com',
  "PORT": 80,
  MONGO_URL: 'mongodb://localhost/local',
  //MONGO_OPLOG_URL: 'mongodb://mongodb/local',
},
deployCheckWaitTime: 60,

docker: {
  // change to 'abernix/meteord:base' if your app is using Meteor 1.4 - 1.5
  image: 'abernix/meteord:base',
},

// Show progress bar while uploading bundle to server
// You might need to disable it on CI servers
enableUploadProgressBar: true
},

mongo: {
version: '3.2.15',
servers: {
  one: {}
}
},
};

我要疯了,有人可以帮我吗?

4

1 回答 1

0

尝试使用 Ubuntu 而不是 mongo 在 Digital Ocean 上创建一键式 droplet,因为 mup 已经为您设置了 mongo。我相信 Meteor UP 假设它正在从新环境中进行部署。

于 2018-03-02T14:35:05.797 回答