Centos 6.3 安装 node.js

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-04 17:58:43

1、在根目录下新建一个目录 /down,用来保存下载的文件

# mkdir /down

cd /down

2、安装 node.js 相关软件

首先要安装 gcc gcc-g++ openssl-devel  

# yum install gcc gcc-g++ openssl-devel


 3、下载 python 2.7

#wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tgz

解压安装

#tar zxvf Python-2.7.3.tgz

#cd Python-2.7.3

#./configure && make && make install


4、下载 node.js 解压 安装

# cd /down

# wget http://nodejs.org/dist/v0.8.14/node-v0.8.14.tar.gz

tar zxvf node-v0.8.14.tar.gz

# cd node-v0.8.14

# ./configure && make && make install

这里可能需要几分钟时间


最终看到  updating shebang of /usr/local/bin/npm to /usr/local/bin/node

就说明安装成功了




为了验证安装是否成功可以验证一下: 

写一段脚本 放到 /down 目录下,文件命名为 node.js

var http = require('http');
http.createServer(function(req,res){

res.end('hello node.js');

}).listen(8080,"127.0.0.1");
console.log('Server is running at http://127.0.0.1:8080/')

然后用命令行启动

 #node /down/node.js 

看到 命令行输出 

Server is running at http://127.0.0.1:8080/


然后用 centos 自带的 firefox 打开 http://127.0.0.1:8080/

ok 至此结束 o(∩_∩)o 哈哈




标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!