Failed to execute Node.js Cloud9

I am trying to use the Cloud9 IDE on the server. I added the SSH key, and as soon as I try SSH on the server, an error message will appear

Could not execute node.js on root@xxx.xxx.xxx.xxx

appears.

I have nodejs installed on the server, v0.10.25

+9
source share
4 answers

You need to install the "nodejs-legacy" package.

apt-get install nodejs-legacy

+7
source

In the SSH dialog box, you can set the path to the Node.js. binary This should solve your problem.

+5
source

, "". /usr/bin/nodejs "which nodejs" SSH. , , AWS . AWS , .

+1

nodejs was not installed on my EC2 instance, so I installed using the instructions from the following link and it works fine. enter link description here

0
source

All Articles