私は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
}
誰かが私がここで間違っていることを特定できますか?