nginx_upstream_check_module
                                
                                
                                
                                    nginx_upstream_check_module copied to clipboard
                            
                            
                            
                        Health checks upstreams for nginx
hi, I try to find a check module for our nginx servers, so I stumbled over this repo. I saw that there is nothing happend in the last year. Is...
git clone https://github.com/yaoweibin/nginx_upstream_check_module.git ~/src/nginx-modules/nginx_upstream_check_module; cd nginx; ./configure --add-module=~/src/nginx-modules/nginx_upstream_check_module Error is: adding module in ~/src/nginx-modules/nginx_upstream_check_module checking for ngx_http_upstream_check_module ... not found auto/configure: error: the ngx_http_upstream_check_module addon error. I have to rename...
在主机上使用curl去访问后端接口是可以正常返回数据的,但是但是健康检查直接返回fail,经过测试返回的响应码应该是4xx。 upstream配置如下: ``` upstream testapi { server ip:port; check interval=5000 rise=3 fall=5 timeout=1000 type=http; check_http_send "GET /v1/chain/get_info HTTP/1.1\r\n\r\n"; check_http_expect_alive http_2xx; } ``` ``` nginx version: nginx/1.17.1 patch:check_1.16.1+.patch ``` 不知道是不是版本兼容的问题?
Do you support openresty? Do you have the openresty version and the patch Reference table. I deployed openresty1.17.8.2 with check_1.16.1+.patch. i found error message. I deployed openresty1.15.8.3 with check_1.14.0+.patch. i...
We use this module for some upstreams, but it works for `fastcgi_pass` where thereis no upstream, only direct address to backend. In logs: ```2020/11/25 10:29:48 [warn] 19#0: *1339797 upstream server...
nginx日志报错如下: 2020/10/22 14:07:37 [alert] 10957#10957: fork() failed while spawning "worker process" (12: Cannot allocate memory) 2020/10/22 14:07:37 [alert] 10957#10957: fork() failed while spawning "worker process" (12: Cannot allocate memory) 之后重新启动nginx就好了
由于工作时间原因,非常抱歉这个模块很久没有更新了,有没有同学愿意接手维护这个模块,我可以加maintainer或者transfer。 谢谢大家
这个自动检测负载均衡能用在nginx stream模式吗?还是只能用在http模式? 可以对udp流负载均衡实现检测切换吗?
This is my config: #---------------------------------------------------- ``` upstream appserver { server 10.0.16.46:8080 weight=1; server 10.0.16.48:8080 weight=1; check interval=3000 rise=2 fall=5 timeout=1000 port=8080 type=http; check_http_send "GET /healthcheck HTTP/1.0\r\n\r\n"; check_http_expect_alive http_2xx; } server...