Hello, I am using an Amazon EC2 instance using CentOs 5.4. I installed nodejs in different servers that follow the same architecture. In the current server I installed nodejs by following the below steps.
*INSTALL PYTHON 2.75* 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 *INSTALL 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 python2.7 configure && make && make install node --version But the issue is, when ever I run the "node" command I see the following image. <https://lh6.googleusercontent.com/-YlTa9flBxE4/VJkMY4tlt2I/AAAAAAAACQg/0w9QrI2-l8w/s1600/node_error.png> >From nodejs IRC @fullstack suggested to run "strace -f /usr/local/bin/node" - The result of this is : https://gist.github.com/aneek/0ef3d9fe1a6521fdee6a Also as per @fullstack's suggestion instead of using "python2.7 configure && make && make install" I tried to install with "./configure && make && make install". But error occurred (That's why I used Python2.7) <https://lh4.googleusercontent.com/-cqQ3rKwtWfM/VJkM35cHmeI/AAAAAAAACQo/ng3mVP0UMxs/s1600/conf.png> Please help me on this. Thanks in advance! -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/7ffef5a3-17b0-4135-b717-1c79b084b157%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
