Meteor mup部署错误

时间:2017-03-14 19:58:49

标签: meteor deployment mup

我使用mup deploy命令在meteor app部署中不断收到此错误。 mup setup命令工作正常。当mup deploy启动时,它会执行许多命令并到达它所说的命令 '缩小应用代码'。它停留5-6分钟,然后发生此错误。

可能导致此错误的原因以及如何解决此问题?

 mup deploy --verbose

Building App Bundle Locally
   Minifying app code
=> Build Error. Check the logs printed above.
Error: build-error
    at ChildProcess.<anonymous> (/usr/lib/node_modules/mup/lib/modules/meteor/build.js:46:16)
    at emitTwo (events.js:106:13)
    at ChildProcess.emit (events.js:194:7)
    at maybeClose (internal/child_process.js:899:16)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)

这是我的mup.js文件。 其他统计数据 节点v7.7.2 npm v4.1.2

module.exports = {
  servers: {
    one: {
      // TODO: set host address, username, and authentication method
      host: '54.218.35.182',
      username: 'ubuntu',
      pem: '~/.ssh/iAssureIT-Ubuntu2.pem'
      // password: 'server-password'
      // or neither for authenticate from ssh-agent
    }
  },

  meteor: {
    // TODO: change app name and path
    name: 'musissive',
    path: '/var/www/meteor/musissive',

    servers: {
      one: {},
    },

    buildOptions: {
      serverOnly: true,
    },

    env: {
      // TODO: Change to your app's url
      // If you are using ssl, it needs to start with https://
      ROOT_URL: 'http://musifyindia.com',
      MONGO_URL: 'mongodb://localhost/meteor',
      PORT: 3003,
    },

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

    // This is the maximum time in seconds it will wait
    // for your app to start
    // Add 30 seconds if the server has 512mb of ram
    // And 30 more if you have binary npm dependencies.
    deployCheckWaitTime: 2400,

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

  mongo: {
    port: 27017,
    version: '3.4.1',
    servers: {
      one: {}
    }
  }
};

1 个答案:

答案 0 :(得分:0)

流星版本中发生的错误与MUP.js无关。问题是服务器上的RAM很低。我正在尝试使用免费的EC2实例进行构建,其中最大可用1 GB。这对于Meteor Build来说还不够。当我升级到4 GB实例时,它开始工作得很好。