nodejs web應(yīng)用監(jiān)聽(tīng)sock文件實(shí)例
來(lái)源:易賢網(wǎng) 閱讀:767 次 日期:2016-06-24 09:23:06
溫馨提示:易賢網(wǎng)小編為您整理了“nodejs web應(yīng)用監(jiān)聽(tīng)sock文件實(shí)例”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了nodejs web應(yīng)用監(jiān)聽(tīng)sock文件實(shí)例,本文講解 nodejs 的 tcp 和 http 監(jiān)聽(tīng) domain socket 文件例子,需要的朋友可以參考下

像 nodejs 寫(xiě)的 tcp 服務(wù)可以監(jiān)聽(tīng)在某個(gè) sock 文件(domain socket) 上,它的 http 服務(wù)也能這么干。雖然作為 http 服務(wù)連接某個(gè) sock 文件的意義不大,所以這里只算是一個(gè)純粹的嘗試。

tcp 服務(wù)是這樣寫(xiě)

代碼如下:

var net = require('net');

net.createserver(function (socket) {

socket.on('data', function (data) {

socket.write('received: ' + data);

});

}).listen('/tmp/node_tcp.sock');

連接上面那個(gè) '/tmp/node_tcp.sock'

代碼如下:

telnet /tmp/node_tcp.sock

trying /tmp/node_tcp.sock...

connected to (null).

escape character is '^]'.

hello world!

received: hello world!

準(zhǔn)確說(shuō)來(lái)本文應(yīng)該是 nodejs 的 tcp 和 http 監(jiān)聽(tīng) domain socket 文件。

對(duì)于 tcp 監(jiān)聽(tīng) domain socket 還是很常用的,比如有時(shí)對(duì)本機(jī)的數(shù)據(jù)庫(kù)或緩存的訪問(wèn)就會(huì)這么做,像用 '/tmp/mysql.sock' 來(lái)訪問(wèn)本機(jī) mysql 服務(wù),這樣就不需要啟動(dòng) tcp 端口暴露出來(lái),安全性有所提高,性能上也有一定的提升。

現(xiàn)在來(lái)看看 nodejs 的 http 監(jiān)聽(tīng)在 domain socket 上, 從經(jīng)典的例子來(lái)改造下

代碼如下:

var http = require('http');

http.createserver(function (req, res) {

res.writehead(200, {'content-type': 'text/plain'});

res.end('hello world\n');

}).listen('/tmp/node_http.sock');

console.log('server running at /tmp/node_http.sock');

尚不知如何在瀏覽器中訪問(wèn)以上的 http 服務(wù),所以用 telnet 測(cè)試

代碼如下:

telnet /tmp/node_http.sock

trying /tmp/node_http.sock...

connected to (null).

escape character is '^]'.

get / http/1.1

http/1.1 200 ok

content-type: text/plain

date: mon, 26 jan 2015 04:21:09 gmt

connection: keep-alive

transfer-encoding: chunked

c

hello world

0

能正確處理對(duì) '/tmp/node_http.sock' 上的 http 請(qǐng)求。

用 nodejs http client 來(lái)訪問(wèn)

代碼如下:

var http = require('http');

var options = {

socketpath: '/tmp/node_http.sock',

method: 'get',

path: '/'

};

var req = http.request(options, function(res){

console.log('status: ' + res.statuscode);

console.log('headers: ' + json.stringify(res.headers));

res.on('data', function (chunk){

console.log(chunk.tostring());

});

});

req.end();

執(zhí)行上面的代碼,假如文件名是 http_client.js,

代碼如下:

node http_client.js

status: 200

headers: {content-type:text/plain,date:mon, 26 jan 2015 04:25:49 gmt,connection:close,transfer-encoding:chunked}

hello world

本文只作記錄,現(xiàn)在還想不到讓 http 服務(wù)監(jiān)聽(tīng)在 domain socket 上的實(shí)際用意,況且瀏覽器也無(wú)法對(duì)它進(jìn)行訪問(wèn)。

更多信息請(qǐng)查看腳本欄目
易賢網(wǎng)手機(jī)網(wǎng)站地址:nodejs web應(yīng)用監(jiān)聽(tīng)sock文件實(shí)例
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)