当前位置: > CentOS > CentOS教程 >

CentOS 6.9安装配置Node.js

时间:2017-09-07 16:24来源:linux.it.net.cn 作者:IT

一、下载软件包node-v8.4.0-linux-x64.tar.xz,网址http://nodejs.cn/download/

 

二、关闭iptablesSELinux

 

三、服务器时间校对

 

四、解压软件包:

# yum -y install xz

# tar -xf node-v8.4.0-linux-x64.tar.xz -C /usr/local

# cd /usr/local

# ln -sv node-v8.4.0-linux-x64 node

 

五、配置环境变量:

# vim /etc/profile.d/node.sh

export NODE_HOME=/usr/local/node

export PATH=$PATH:$NODE_HOME/bin

export NODE_PATH=$NODE_HOME/lib/node_modules

# . /etc/profile.d/node.sh

 

六、查看Node.js安装版本:

# node -v

 

七、编写helloworld.js测试文件:

# vim /software/helloworld.js

var http = require('http');

http.createServer(function(req,res) {

res.end('helloworld...')

}).listen(8080);

console.log('服务已启动,监听端口8080......')

 

八、启动Node.js,查看效果:

# node /software/helloworld.js

浏览器访问192.168.1.148:8080




(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容