前面有一篇文章記錄nginx負載均衡后端檢查,鏈接為 http://www.sfodin.cn/Linux/2019-04/158352.htm
但是只包含http健康檢查不包含tcp下面安裝nginx可以實現(xiàn)http及tcp健康檢查
安裝
git clone https://github.com/nginx/nginx.git
git clone https://github.com/zhouchangxun/ngx_healthcheck_module.git
cd nginx/;
git checkout branches/stable-1.12
git apply ../ngx_healthcheck_module/nginx_healthcheck_for_nginx_1.12+.patch
./auto/configure –with-stream –add-module=../ngx_healthcheck_module/
make && make install
git下載nginx及健康檢查模板安裝nginx
配置http的upstream配置樣式如下
upstream www.xxx.net{
server 172.16.90.232:81;
check interval=3000 rise=2 fall=5 timeout=5000 type=http;
check_http_send “GET / HTTP/1.0rnrn”;
check_http_expect_alive http_2xx http_3xx;
}
配置tcp的upstream的配置樣式如下
upstream device5000{
server 172.16.90.52:5000;
server 172.16.90.53:5000;
check interval=3000 rise=2 fall=5 timeout=5000 default_down=true type=tcp;
}
在主配置文件新加一個location
location /upstream_status{
healthcheck_status html;
}
Web頁面訪問
http://ip/upstream_status
頁面顯示如下
下面關于Nginx的文章您也可能喜歡,不妨參考下:
CentOS 7下Nginx服務器的安裝配置 http://www.sfodin.cn/Linux/2017-04/142986.htm
CentOS上安裝Nginx服務器實現(xiàn)虛擬主機和域名重定向 http://www.sfodin.cn/Linux/2017-04/142642.htm
CentOS 6.8 安裝LNMP環(huán)境(Linux+Nginx+MySQL+PHP) http://www.sfodin.cn/Linux/2017-04/142880.htm
Linux下安裝PHP環(huán)境并配置Nginx支持php-fpm模塊 http://www.sfodin.cn/Linux/2017-05/144333.htm
Nginx服務的SSL認證和htpasswd認證 http://www.sfodin.cn/Linux/2017-04/142478.htm
Ubuntu 16.04上啟用加密安全的Nginx Web服務器 http://www.sfodin.cn/Linux/2017-07/145522.htm
Linux中安裝配置Nginx及參數(shù)詳解 http://www.sfodin.cn/Linux/2017-05/143853.htm
Nginx日志過濾 使用ngx_log_if不記錄特定日志 http://www.sfodin.cn/Linux/2014-07/104686.htm
CentOS 7.2下Nginx+PHP+MySQL+Memcache緩存服務器安裝配置 http://www.sfodin.cn/Linux/2017-03/142168.htm
Nginx反向代理實現(xiàn)Tomcat負載均衡 http://www.sfodin.cn/Linux/2018-03/151223.htm
Nginx的正向代理與反向代理詳解 http://www.sfodin.cn/Linux/2019-03/157360.htm
Nginx搭建反向代理服務器 http://www.sfodin.cn/Linux/2018-03/151418.htm