介绍
- 安装 Nginx
- 从源码构建 Nginx
- 初学者指南
- 控制 nginx
- 连接处理方式
- 设置哈希
- 调试日志
- 记录日志到 syslog
- 配置文件度量单位
- 命令行参数
- Windows 下的 nginx
- QUIC 和 HTTP/3 支持
- nginx 如何处理请求
- 服务器名称
- 使用 nginx 作为 HTTP 负载均衡器
- 配置 HTTPS 服务器
- UDP 会话
- 关于 nginScript
其他
How-To
开发
模块参考
- 核心功能
- HTTP
- ngx_http_core_module
- ngx_http_access_module
- ngx_http_addition_module
- ngx_http_auth_basic_module
- ngx_http_auth_jwt_module
- ngx_http_auth_request_module
- ngx_http_autoindex_module
- ngx_http_browser_module
- ngx_http_charset_module
- ngx_http_dav_module
- ngx_http_empty_gif_module
- ngx_http_f4f_module
- ngx_http_fastcgi_module
- ngx_http_flv_module
- ngx_http_geo_module
- ngx_http_geoip_module
- ngx_http_grpc_module
- ngx_http_gunzip_module
- ngx_http_gzip_module
- ngx_http_gzip_static_module
- ngx_http_headers_module
- ngx_http_hls_module
- ngx_http_image_filter_module
- ngx_http_index_module
- ngx_http_js_module
- ngx_http_keyval_module
- ngx_http_limit_conn_module
- ngx_http_limit_req_module
- ngx_http_log_module
- ngx_http_map_module
- ngx_http_memcached_module
- ngx_http_mirror_module
- ngx_http_mp4_module
- ngx_http_perl_module
- ngx_http_proxy_module
- ngx_http_random_index_module
- ngx_http_realip_module
- ngx_http_referer_module
- ngx_http_rewrite_module
- ngx_http_scgi_module
- ngx_http_secure_link_module
- ngx_http_session_log_module
- ngx_http_slice_module
- ngx_http_spdy_module(过时)
- ngx_http_split_clients_module
- ngx_http_ssi_module
- ngx_http_ssl_module
- ngx_http_status_module(过时)
- ngx_http_stub_status_module
- ngx_http_sub_module
- ngx_http_upstream_module
- ngx_http_upstream_conf_module
- ngx_http_upstream_hc_module
- ngx_http_userid_module
- ngx_http_uwsgi_module
- ngx_http_v2_module
- ngx_http_xslt_module
- Stream
- ngx_stream_core_module
- ngx_stream_access_module
- ngx_stream_geo_module
- ngx_stream_geoip_module
- ngx_stream_js_module
- ngx_stream_keyval_module
- ngx_stream_limit_conn_module
- ngx_stream_log_module
- ngx_stream_map_module
- ngx_stream_proxy_module
- ngx_stream_realip_module
- ngx_stream_return_module
- ngx_stream_split_clients_module
- ngx_stream_ssl_module
- ngx_stream_ssl_preread_module
- ngx_stream_upstream_module
- ngx_stream_upstream_hc_module
- ngx_stream_zone_sync_module
- 其他
- ngx_http_api_module
ngx_stream_upstream_hc_module
ngx_stream_upstream_hc_module
模块(1.9.0)允许对组中服务器启用定期健康检查。服务器组必须驻留在共享内存中。
如果健康检查失败,则服务器将被视为不可用。如果为同一组服务器定义了多个健康检查,则任何一次检查失败都会使相应的服务器不可用。客户端连接不会传递给不可用的服务器,并且服务器不会处于「检查」状态。
此模块为商业订阅部分。
示例配置
upstream tcp {
zone upstream_tcp 64k;
server backend1.example.com:12345 weight=5;
server backend2.example.com:12345 fail_timeout=5s slow_start=30s;
server 192.0.2.1:12345 max_fails=3;
server backup1.example.com:12345 backup;
server backup2.example.com:12345 backup;
}
server {
listen 12346;
proxy_pass tcp;
health_check;
}
使用此配置,nginx 将每 5 秒钟检查是否能与 tcp 组中的每个服务器建立 TCP 连接。如果无法与服务器建立连接,则健康检查将失败,并且服务器将被视为不可用。
可以为 UDP 协议配置健康检查:
upstream dns_upstream {
zone dns_zone 64k;
server dns1.example.com:53;
server dns2.example.com:53;
server dns3.example.com:53;
}
server {
listen 53 udp;
proxy_pass dns_upstream;
health_check udp;
}
在这种情况下,nginx 将发送 nginx health check
字符串,期望得到的响应中没有 ICMP Destination Unreachable
消息。
健康检查也可以配置为测试从服务器获得的数据。使用 match
指令单独配置测试规则,并在 health_check 指令的 match
参数中引用测试规则。
指令
health_check
- | 说明 |
---|---|
语法 | health_check [parameters] ; |
默认 | —— |
上下文 | server |
对组中服务器启用定期健康检查。
支持以下可选参数:
interval=time
设置两次连续运行健康检查之间的间隔时间,默认为 5 秒。
jitter=time
设置每次运行健康检查将随机延迟的时间,默认没有延迟。
fails=number
设置指定服务器在连续运行健康检查失败次数达到
number
后,将被视为不可用,默认为 1。passes=number
设置指定服务器在连续通过健康检查次数达到
number
后,将被视为健康,默认为 1。mandatory
设置服务器的初始「检查中」(checking)状态,直到完成第一次健康检查运行(1.11.7)。客户端连接不会以「检查中」的状态传递到服务器。如果未指定该参数,则服务器初始状态将被视为健康。
match=name
指定
match
块,该匹配块配置健康检查中正常的连接必须要通过的测试。默认情况下,对于 TCP,仅检查与服务器建立 TCP 的连接。对于 UDP,nginx 发送nginx health check
字符串,期望得到的响应不应存在 ICMPDestination Unreachable
消息。在 1.11.7 版本之前,默认情况下,UDP 运行健康检查需要带有 send 和 expect 参数的 match 块。
port=number
定义连接到服务器执行健康检查(1.9.7)时使用的端口,默认等于服务器端口。
udp
指定将 UDP 协议代替默认的 TCP 协议(1.9.13)用于健康检查。
health_check_timeout
- | 说明 |
---|---|
语法 | health_check_timeout name { ... } ; |
默认 | —— |
上下文 | stream |
覆盖用于健康检查的 proxy_timeout 值。
match
- | 说明 |
---|---|
语法 | match name { ... } ; |
默认 | —— |
上下文 | stream |
定义用于验证对服务器运行健康检查返回的响应的具名测试集。
可以配置以下参数:
send string;
向服务器发送一个
string
(字符串)expect string | ~ regex;
从服务器获得的数据应匹配的文字字符串(1.9.12)或正则表达式。正则表达式以前
~*
修饰符(不区分大小写)或~
修饰符(不区分大小写)指定。
send
和 expect
参数都可以包含带有 \x
前缀的十六进制文字,后跟两个十六进制数字,例如 \x80
(1.9.12)。
如果满足以下条件,则通过健康检查:
- TCP 连接建立成功
- 发送了来自
send
参数的string
(如果已指定) - 将从服务器获取的数据与来自
expect
参数的字符串或正则表达式匹配(如果已指定) - 经过的时间不超过 health_check_timeout 指令中指定的值
示例:
upstream backend {
zone upstream_backend 10m;
server 127.0.0.1:12345;
}
match http {
send "GET / HTTP/1.0\r\nHost: localhost\r\n\r\n";
expect ~ "200 OK";
}
server {
listen 12346;
proxy_pass backend;
health_check match=http;
}
仅检查从服务器获得的数据的首个 proxy_buffer_size 字节。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论