upstream hello {
server 100.14.1.3:1201;
server 100.14.1.4:1201;
check interval=3000 rise=2 fall=5 timeout=1000 type=http;
check_http_send "HEAD /product HTTP/1.0\r\n\r\n";
check_http_expect_alive http_2xx http_3xx;
}
server {
listen 80;
server_name hello.youbest.com;
access_log /data/logs/nginx/hello.youbest.com.access.log main;
location / {
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://hello;
}
}
創(chuàng)新互聯(lián)建站專注于淄川企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站建設(shè),商城網(wǎng)站定制開發(fā)。淄川網(wǎng)站建設(shè)公司,為淄川等地區(qū)提供建站服務(wù)。全流程定制設(shè)計(jì),專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)建站專業(yè)和態(tài)度為您提供的服務(wù)
首先要確認(rèn)服務(wù)類型是 http 還是tcp
check interval=3000 rise=2 fall=5 timeout=1000 type=http;
or
check interval=3000 rise=2 fall=5 timeout=1000 type=tcp;
然后確認(rèn)健康檢查的url是否支持 HEAD請(qǐng)求或者GET 請(qǐng)求
[root@100-14-1-3 ~]# curl -v -XHEAD http://hello.youbest.com/product
HEAD / HTTP/1.1
User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.27.1 zlib/1.2.3 libidn/1.18 libssh3/1.4.2
Host: baidu.com
Accept: /< HTTP/1.1 200 OK
< Date: Tue, 07 Jan 2020 08:29:28 GMT
< Server: Apache
< Last-Modified: Tue, 12 Jan 2010 13:48:00 GMT
< ETag: "51-47cf7e6ee8400"
< Accept-Ranges: bytes
< Content-Length: 81
< Cache-Control: max-age=86400
< Expires: Wed, 08 Jan 2020 08:29:28 GMT
< Connection: Keep-Alive
< Content-Type: text/html
<
以上返回表示支持 HEAD 請(qǐng)求 nginx 就可以這樣做健康檢查
check interval=3000 rise=2 fall=5 timeout=1000 type=http;
check_http_send "HEAD /product HTTP/1.0\r\n\r\n";
check_http_expect_alive http_2xx http_3xx;
其中 /product 表示服務(wù)里面的埋點(diǎn)路徑
< HTTP/1.1 200 OK 表示返回200狀態(tài)
如果HEAD 請(qǐng)求不支持 參考下面baidu.com的GET 請(qǐng)求
[root@vhs100-14-1-3 ~]# curl -v -XGET http://baidu.com
GET / HTTP/1.1
User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.27.1 zlib/1.2.3 libidn/1.18 libssh3/1.4.2
Host: baidu.com
Accept: /< HTTP/1.1 200 OK
< Date: Tue, 07 Jan 2020 08:41:38 GMT
< Server: Apache
< Last-Modified: Tue, 12 Jan 2010 13:48:00 GMT
< ETag: "51-47cf7e6ee8400"
< Accept-Ranges: bytes
< Content-Length: 81
< Cache-Control: max-age=86400
< Expires: Wed, 08 Jan 2020 08:41:38 GMT
< Connection: Keep-Alive
< Content-Type: text/html
<
<html>
<meta http-equiv="refresh" content="0;url=http://www.baidu.com/">
</html>
以上表示支持 GET 請(qǐng)求 nginx 就可以這樣做健康檢查
check interval=3000 rise=2 fall=5 timeout=1000 type=http;
check_http_send "GET /product HTTP/1.0\r\n\r\n";
check_http_expect_alive http_2xx http_3xx;
加了健康檢查后,當(dāng)后端有多臺(tái)服務(wù)器提供服務(wù)時(shí)
Down掉的機(jī)器就不會(huì)被代理轉(zhuǎn)發(fā)業(yè)務(wù)過去
從而保障業(yè)務(wù)的正常處理
網(wǎng)站欄目:Nginxuptream健康檢查
當(dāng)前URL:http://sd-ha.com/article38/jichpp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供動(dòng)態(tài)網(wǎng)站、網(wǎng)站收錄、Google、網(wǎng)站導(dǎo)航、靜態(tài)網(wǎng)站、響應(yīng)式網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)