一、下载软件包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
时间: 2024-10-10 00:19:17