CentOS 6.9安装配置Node.js

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 6.9安装配置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 安装 - CentOS 6.9

Ubuntu 16.04/CentOS 6.9安装Node.js 6.9.5

CentOS 6.9安装配置nmon

CentOS 6.9安装配置RabbitMQ

CentOS 6.9下配置安装KVM

CentOS 6.9安装配置ZooKeeper集群