0

私はmeteorjsが初めてです。Meteor UP (MUP) を使用してサーバーにアップロードするアプリを作成しました。cPanelがインストールされた専用のLinuxサーバーがあります。SSH経由でサーバーにアクセスできます。

アプリを展開しようとしているローカル セットアップに Windows 7 があります。秘密鍵を作成し、それを MUP で使用してアプリを展開しています。しかしmup setup、コマンド プロンプトで実行すると、次のエラーが表示されます。

Meteor Up: Production Quality Meteor Deployments
------------------------------------------------


Started TaskList: Setup
[207.244.66.193] - Installing Node.js
[207.244.66.193] ? Installing Node.js: FAILED
        spawn ENOENT
Completed TaskList: Setup

ここに私のmup.jsonファイルがあります

{
  // Server authentication info
  "servers": [
    {
      "host": "xxx.xxx.xx.xxx",
      "username": "devmain",
      //"password": "password"
      // or pem file (ssh based authentication)
      "pem": "/Users/Jackal/Desktop/mup1"
    }
  ],

  // Install MongoDB in the server, does not destroy local MongoDB on future setup
  "setupMongo": true,

  // WARNING: Node.js is required! Only skip if you already have Node.js installed on server.
  "setupNode": true,

  // WARNING: If nodeVersion omitted will setup 0.10.25 by default. Do not use v, only version number.
  "nodeVersion": "0.10.25",

  // Install PhantomJS in the server
  "setupPhantom": true,

  // Application name (No spaces)
  "appName": "myappname",

  // Location of app (local directory)
  "app": "/Users/Jackal/Desktop/app",

  // Configure environment
  "env": {
    "PORT": 3000,
    "ROOT_URL": "http://myapp.com"
  },

  // Meteor Up checks if the app comes online just after the deployment
  // before mup checks that, it will wait for no. of seconds configured below
  "deployCheckWaitTime": 15
}

誰かが私がここで間違っていることを特定できますか?

4

1 に答える 1

2

cPanel を実行しているため、Redhat ベースのシステムのみをサポートしているため、debian ベースのオペレーティング システムを実行していない可能性が高く、MeteorUP はaptコマンドに依存しており、debian ベースのシステムでのみ使用できるため、MeteorUP は機能しません

アプリを本番環境で実行するには、systemd を使用できます。

[Service]
ExecStart=[path_to_your_meteor_cmd] [path_to_your_app]
Restart=always
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=[your_app_name]
User=[user_it_runs_under]
Group=[group_it_runs_under]
Environment=NODE_ENV=production

[Install]
WantedBy=multi-user.target

名前を付けて保存し、[your_app_name].serviceすべて[]を正しい値に置き換えた後、スクリプトを に配置し/etc/systemd/system/、コマンドsystemctl enable [appname].serviceとを実行するとsystemctl start [appname].service、再起動/クラッシュ後にアプリが自動的に起動します。

参考までに私のものは次のとおりです。

[Service]
ExecStart=/usr/local/bin/meteor /home/meteor-run/spottr/
Restart=always
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=spottr
User=spottr
Group=spottr
Environment=NODE_ENV=production

[Install]
WantedBy=multi-user.target
于 2014-05-15T12:45:00.230 に答える