之前在windows上写Node,后面考虑到项目部署,于是需要移植到centos上。
环境需求:
- centos版本为6.5 64位
- Node安装0.10.24
步骤如下:
1.安装gcc编译
1 | yum -y install gcc gcc-c++ openssl-devel |
2.下载node.js1
2
3a.wget http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gz
b.tar zxvf node-v0.10.24.tar.gz
c.cd node-v0.10.24
3.配置编译安装
1 | ./configure --prefix=/usr/local/node |
4.配置Node环境
vim /etc/profile
1 |
|
qw!
1 | source /etc/profile |
5.重启