2021-05-12 14:32:11
CentOS 6.9安裝設定Node.js
簡單介紹在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
相關文章