centos6 nodejs 安装测试
生活随笔
收集整理的這篇文章主要介紹了
centos6 nodejs 安装测试
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
2019獨角獸企業重金招聘Python工程師標準>>>
centos6:http://down.zhbit.com/downloads/system_iso/CentOS-6.0-i386-LiveCD.iso安裝
挨個執行以下命令。 創建文件夾 mkdir /usr/local/node cd?/usr/local/node wget http://nodejs.org/dist/v0.6.14/node-v0.6.14.tar.gz tar zxvf node-v0.6.14.tar.gz cd node-v0.6.14 ./configure (這一步看看少什么,新安裝的centos6 會少 gcc-c++ openssl,執行下面兩行命令安裝這些) yum install gcc-c++ yum install openssl-devel make(這個命令可能也需要先安裝:yum -y install gcc automake autoconf libtool make) make install
測試 cd /usr/local/node/code vim hello_node.js 輸入以下代碼: var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('pairwinter'); }).listen(8088); console.log('Server running at http://127.0.0.1:8088/'); 運行: node?hello_node.js 訪問: http://127.0.0.1:8088/ 輸出:pairwinter
轉載于:https://my.oschina.net/u/142412/blog/52693
總結
以上是生活随笔為你收集整理的centos6 nodejs 安装测试的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C#关于电脑DPI改动显示的问题
- 下一篇: YUV422转RGB24