使用SSH

时间:2016-05-02 15:38:00

标签: node.js meteor deployment npm meteor-up

我尝试使用Meteor up(mupx)推送我的Meteor项目,但是当我尝试部署时出错:

~/git/mupx/bitcoinoutlet# mupx deploy
[..]
Meteor app path : /root/git/satoshiportal
Using buildOptions : {}

events.js:72
     throw er; // Unhandled 'error' event

Error: spawn ENOENT
  at errnoException (child_process.js:1000:11)
  at Process.ChildProcess._handle.onexit /root/git/satoshiportal

这是我的mup.json配置文件:

{
  // Server authentication info
  "servers": [
    {
      "host": "159.203.12.63",
      "username": "root",
      "password": "password",

      "env": {
        "NODE_ENV": "production"
      }
    }
  ],
   "ssl": {
    "certificate": "./bundle.crt",
    "key": "./private.key",
    "port": 443
  },

  // Install MongoDB on the server. Does not destroy the local MongoDB on future setups
  "setupMongo": true,
  "appName": "satoshiportal",
  "app": "/root/git/satoshiportal",

  "env": {
    "PORT": 80,
    "ROOT_URL": "https://www.bitcoinoutlet.com",
    "MAIL_URL": "smtp://......"
  },

  "deployCheckWaitTime": 15,
  "enableUploadProgressBar": true
}

最后,版本:

~/git/mupx/bitcoinoutlet# npm --version
3.8.1
~/git/mupx/bitcoinoutlet# node --version
v0.10.29

我没有说明如何检索当前的mupx版本,但我尝试了很多版本(从1.1到1.5),我的上一次更新是npm install mupx@1.5.1 -g(所以它可能是1.5.1

Mupx日志给我: [159.203.12.63] sudo: unable to resolve host bitcoinoutlet

除了未处理的错误和此日志之外,我什么都没有。我真的不知道下一步该做什么。

感谢

1 个答案:

答案 0 :(得分:0)

昨天,我使用mupx并在不同的环境中遇到类似的Error: spawn ENOENT错误。

我在服务器上安装了 build-essential C / C ++编译器包:

sudo apt-get install build-essential

为我工作!