Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux shell實現HTTP服務

Linux shell實現HTTP服務

日期:2017/2/7 14:23:57      編輯:Linux教程
 

需求場景

 

使用代理服務器 HAProxy 對 Mysql 做負載均衡是常用方案,為提高可用性,當某個 Mysql 出現問題時,例如服務器故障了,或者數據復制中斷了,最好可以讓 HAProxy 馬上知道,然後停止向其轉發請求

HAProxy 如何知道 Mysql 是否有問題呢?

解決思路

(1)編寫一個shell腳本,檢查 mysql 的狀態,然後輸出結果,例如狀態正常時,返回狀態碼200及正確信息,否則返回狀態碼503及錯誤信息

(2)實現一個HTTP服務,有請求連接後,調用上面的檢查腳本,返回檢查結果

(3)HAProxy 訪問這個HTTP服務,根據返回的結果信息來判斷這個 mysql 是否可用

如何方便快速的實現一個可以調用shell腳本的HTTP服務呢?

比較通用的方案就是 xinetd

xinetd 是 Linux 的守護進程,全稱為 extended interent daemon,擴展的網絡守護進程

xinetd 可以打開一個端口,等待連接,你可以告訴 xinetd 運行哪個腳本,當有連接進來後,xinetd 便會執行腳本,然後直接返回腳本輸出的內容

HAProxy -> xinetd -> mysql-check腳本,HAProxy 便取得了mysql的狀態信息

xinetd 的配置案例

 

下面實現一個簡單的 xinetd 示例,開放 9200 端口,返回一個測試腳本的輸出內容

如果機器上還沒有 xinetd,先安裝一下,centos7 下可以使用命令 yum install xinetd

(1)測試腳本

#!/bin/bash

echo `uptime | egrep -o 'up ([0-9]+) days' | awk '{print $2}'`

這個腳本用來輸出當前服務器的在線天數

用 chmod +x 給腳本添加可執行權限

(2)編寫 xinetd 服務

例如服務名為 helloworld,文件名 /etc/xinetd.d/helloworld,內容為

service helloworld

{

disable = no

port    = 9200

socket_type     = stream

protocol        = tcp

wait            = no

user            = root

server          = /root/test.sh

server_args     = test

}

port 指定監聽的端口

server 指定要執行的腳本

(3)加入服務列表

修改 /etc/services

找到定義 9200 端口的位置,注釋掉原有的,添加 helloworld 服務

helloworld      9200/tcp

#wap-wsp         9200/tcp

#wap-wsp         9200/udp

(4)重啟 xinetd

centos 下的重啟命令為:

systemctl restart xinetd.service

(5)測試

分別用 nc 和 telnet 兩個命令測試一下

nc localhost 9200

Linux shell

telnet localhost 9200

HTTP服務

可以正確輸出腳本執行內容,完成示例

Copyright © Windows教程網 All Rights Reserved