centos

I have a problem running a simple Hello World on Node.js. I'm using CentOS and installed it via yum. When I run the file with Node.js, this error pops up:

node: symbol lookup error: node: undefined symbol: ares_library_init

I tried searching google to no avail. I only found that this belongs to the c-ares library. Any idea of how I can solve this?

The file contains this:

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello Worldn');
}).listen(1337, "127.0.0.1");
console.log('Server running at http://127.0.0.1:1337/');

Solved it. You can't use yum.

yum remove nodejs
git clone http://github.com/joyent/node.git
cd node
git checkout v0.4.10
./configure
make
make install
链接地址: http://www.djcxy.com/p/52506.html

上一篇: cloud9 + mongodb + nodejs

下一篇: CentOS的