运行在命令行中的NodeJ显示“中止”

我正在使用使用CentOs 5.4的Amazon EC2实例。 我在不同的服务器上安装了nodejs,它们遵循相同的体系结构。 在当前服务器中,我按照以下步骤安装了nodejs。

安装Python

yum install gcc zlib-devel python-setuptools readline-devel cd /usr/src wget http://www.python.org/ftp/python/2.7.5/Python-2.7.5.tgz tar -xzf Python-2.7.5.tgz cd Python-2.7.5 ./configure make altinstall python2.7 -V 

安装NODEJS

 sudo yum groupinstall 'Development Tools' sudo yum install openssl-devel cd /usr/local/ wget http://nodejs.org/dist/node-latest.tar.gz tar zxvf node-latest.tar.gz cd node-v0.10.34 PYTHON=/usr/local/bin/python2.7 export PYTHON set | grep PYTHON python2.7 configure && make && make install node --version 

但问题是,当我运行“节点”命令,我看到下面的图像。 在这里输入图像说明

我不知道发生了什么,以及如何debugging? 一切似乎都安装正确。

编辑#1

从nodejs IRC @fullstackbuild议运行“strace -f / usr / local / bin / node” – 这样的结果是: https : //gist.github.com/aneek/0ef3d9fe1a6521fdee6a

编辑#2根据@ fullstack的build议,而不是使用“python2.7 configure && make && make install”我试图用“./configure && make && make install”进行安装。 但错误发生(这就是为什么我使用Python2.7)
在这里输入图像说明

请build议。 我被卡住了很糟糕:-(

用EPEL安装

 wget http://download.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm rpm -ivh epel-release-5-4.noarch.rpm curl -sL https://rpm.nodesource.com/setup | bash - yum install -y nodejs 

https://github.com/joyent/node/wiki/installing-node.js-via-package-manager#enterprise-linux-and-fedora