$ yum install gcc gcc-c++ $ yum install openssl-devel make $ wget http://nodejs.org/dist/v0.10.31/node-v0.10.31.tar.gz ※ http://nodejs.org/download/ 최신버젼받기 $ tar xvfz node-v0.10.31.tar.gz $ cd node-v0.10.31 $ ./configure --prefix=/data/nodejs { 'target_defaults': { 'cflags': [], 'default_configuration': 'Release', 'defines': [], 'include_dirs': [], 'libraries': []}, 'variables': { 'clang': 0, 'gcc_version': 44, 'host_arch': 'x64', 'node_install_npm': 'true', 'node_prefix': '/data/nodejs', 'node_shared_cares': 'false', 'node_shared_http_parser': 'false', 'node_shared_libuv': 'false', 'node_shared_openssl': 'false', 'node_shared_v8': 'false', 'node_shared_zlib': 'false', 'node_tag': '', 'node_unsafe_optimizations': 0, 'node_use_dtrace': 'false', 'node_use_etw': 'false', 'node_use_openssl': 'true', 'node_use_perfctr': 'false', 'node_use_systemtap': 'false', 'python': '/usr/bin/python', 'target_arch': 'x64', 'v8_enable_gdbjit': 0, 'v8_no_strict_aliasing': 1, 'v8_use_snapshot': 'true', 'want_separate_host_toolset': 0}} creating ./config.gypi creating ./config.mk $ make && make install ##### bin Path는 계정 및 shell환경에 맞게 profile 에 등록하기## $ vi /root/.bash_profile PATH=$PATH:$HOME/bin PATH=$PATH:/data/nodejs/bin ##nodjs bin등록 export PATH source /root/.bash_profile ############################################################## $ /data/nodejs/bin/node -v v0.10.31 ## npm 이용한 forever 데몬프로그램 설치######################## $ /data/nodejs/bin/npm install -g forever ## npm 이용한 socket.io 설치################################### $ /data/nodejs/bin/npm install -g socket.io
Programming/node.js2014. 9. 15. 18:21