2017-03-14 9 views
1

mup deployコマンドを使用してmeteor appデプロイメントでこのエラーが発生し続けています。 mup setupコマンドが正常に動作しています。 mupのデプロイが開始されると、多くのコマンドが実行され、 「アプリケーションコードのマイニング」というコマンドが表示されます。そこに5〜6分滞在して、このエラーが発生します。Meteor mupデプロイメントエラー

このエラーの原因となる原因とその解決方法を教えてください。

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: {} 
    } 
    } 
}; 
+0

配備しようとしている流星のバージョンは?そしてあなたのawsサーバーにもmongodbがインストールされていますか? – collision

答えて

0
流星のビルドで何が起こっエラーがMUP.js.とは何の関係もなかった

問題はサーバー上のRAMが少ないことでした。私は最大1GBの空き容量を持つ無料のEC2インスタンスでビルドを試していました。これはMeteor Buildでは十分ではありません。私が4 GBのインスタンスにアップグレードすると、うまく動作し始めました。

関連する問題