码迷,mamicode.com
首页 > Web开发 > 详细

CentOS 6.9安装配置Node.js

时间:2017-08-24 20:08:54      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:node.js

一、下载软件包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

技术分享


本文出自 “天道酬勤” 博客,请务必保留此出处http://qiuyue.blog.51cto.com/1246073/1959092

CentOS 6.9安装配置Node.js

标签:node.js

原文地址:http://qiuyue.blog.51cto.com/1246073/1959092

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!