I am new to meteorjs. I created an app that I am uploading to server using Meteor UP (MUP). I have dedicated linux server with cPanel installed. I can access the server through SSH.
I have windows 7 on my local setup from where I am trying to deploy the app. I created a private key and am using it with MUP to deploy the app. But when I run mup setup
in command prompt, it gives me the following error:
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
Here is my mup.json file
{
// 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
}
Can someone please identify what I am doing wrong here?