Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As I run this piece of code using node a.js:

var sys = require('sys');
sys.puts('Hello, World');

I'm getting the following as an error

axconfig: port 1 not active
axconfig: port 2 not active
share|improve this question
Added a tag to catalogate the framework (nodejs.org) – Eineki Mar 11 '10 at 11:19
1  
I find it unbelievable that this thing is - after more than 2 years - still an issue even in the biggest magazines: currently nettuts (millions of readers) says you should install node.js via apt-get install node. holy ! net.tutsplus.com/tutorials/javascript-ajax/… – Panique Aug 18 '12 at 21:49

3 Answers

Warning: This is old but it might still work.

You didn't install node.js but the package node (that contains some other unrelated software) for your linux distro.

You can install node.js three ways: Using git, downloading the version file, or installing through the package manager, I recommend using the package manager for ease-of-use and the ability to easily update.

Package Manager

Check out Installing Node.js via Package Manager. It has instructions on how to install using the package manager of your preference.

Direct Download

Go the the downloads page of node.js and download the package for your OS. Don't forget that, doing i this way, doesn't auto-update node.js later on!

Source Compilation / git

First you need git and a compiler, here is how you install them on debian/ubuntu (this depends on your package manager):

sudo apt-get install git-core build-essential

(If you don't want to use git, you can download the source code from the website. You still need build-essential or equivalent for your OS.)

Then go to a folder where the "node" repository will be placed, something like ~/projects or ~/src is good enough, and do this:

git clone https://github.com/joyent/node.git

Then enter the node directory, configure it and build it.

cd node && ./configure && make

Everything should go well. Before installing node you can optionally run the tests to check for any problems:

make test

You can finally install node, this allows you to run the node command anywhere in the system and the javascript libraries to be installed.

make install

...and we are done. You can test those lines of code using node-repl (node's REPL, think "interactive interpreter"), just type node-repl, quit with Ctrl+D.

share|improve this answer
the Git repository is at github.com/ry/node.git now – Yanick Rochon Dec 13 '10 at 20:28
1  
you also need to install the package curl – Yanick Rochon Dec 13 '10 at 20:42
1  
Better yet, download a stable release from nodejs.org and install that. A lot faster then cloning the full Git repo. – Jörn Zaefferer Jan 3 '11 at 16:55
4  
Ubuntu has an easy way to install it as well. github.com/joyent/node/wiki/… – Andrew Sep 23 '11 at 23:16
1  
sudo apt-get install nodejs does not install anything. nowhere. – Panique Aug 18 '12 at 21:51
show 2 more comments

axconfig: port 1 not active axconfig: port 2 not active

this problem no where related to nodejs.

Do not install node using the command sudo apt-get install node, This will install radio package(node). this radio package requires axports to be active, which is not linked with nodejs

So uninstall node from sudo apt-get remove node

Manually Download nodejs from Here or from GitHub but make sure you install the stable branch(0.4.x).Unpack the nodejs.

For installing please follow the README.md

After installing then set the environment variables echo PATH=$PATH:/home/user/pathtonode/

share|improve this answer
Really helpful. Thanks! – quangtruong1985 Jun 12 '12 at 11:10
Note the typo in PATH=$PTATH. Should be PATH=$PATH if it's not obvious. – SyaZ Nov 20 '12 at 8:11

you installed node, you want the package called nodejs

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.