简单介绍在CentOS 6.9下安装配置Node.js的步骤。
一、下载软件包node-v8.4.0-linux-x64.tar.xz,网址http://nodejs.cn/download/
二、关闭iptables和SELinux
三、服务器时间校对
四、解压软件包:
# 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
下面关于Node.js的内容你可能也喜欢:
在 Ubuntu 14.04/15.04 上安装配置 Node.js v4.0.0 http://www.linuxidc.com/Linux/2015-10/123951.htm
如何在CentOS 7安装Node.js http://www.linuxidc.com/Linux/2015-02/113554.htm
Ubuntu 14.04下搭建Node.js开发环境 http://www.linuxidc.com/Linux/2014-12/110983.htm
Ubunru 12.04 下Node.js开发环境的安装配置 http://www.linuxidc.com/Linux/2014-05/101418.htm
Node.Js入门[PDF+相关代码] http://www.linuxidc.com/Linux/2013-06/85462.htm
Node.js开发指南 高清PDF中文版 +源码 http://www.linuxidc.com/Linux/2014-09/106494.htm
Linux下安装Node.js详细完整教程 http://www.linuxidc.com/Linux/2017-01/139726.htm
Ubuntu 16.04 64位 搭建 Node.js NodeJS 环境 http://www.linuxidc.com/Linux/2016-09/135487.htm
Node.js 的详细介绍:请点这里
Node.js 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-10/147665.htm