Strictly speaking, nginx does not have a health check for the load balancing backend nodes, but it can be completed through the relevant instructions in the default ngx_http_proxy_module module and ngx_http_upstream_module module to automatically switch to a healthy node to provide access when a backend node fails. The following lists the relevant instructions in these two modules: Syntax: proxy_connect_timeout time; Default value: proxy_connect_timeout 60s; Set the timeout for establishing a connection with the backend server. It should be noted that this timeout is generally not likely to be greater than 75 seconds. Syntax: proxy_read_timeout time; Default value: proxy_read_timeout 60s; Defines the timeout for reading a response from a backend server. This timeout refers to the maximum time interval between two adjacent read operations, not the maximum time for the entire response transmission to complete. If the backend server does not transmit any data within the timeout period, the connection will be closed. Use the nginx_upstream_check_module module to perform health checks on backend nodes This is the nginx module developed by the Taobao technical team. You can visit Taobao tengine's official website http://tengine.taobao.org to obtain this version of nginx. Add health check to the upstream in the nginx.conf configuration file as follows: upstream name { server 192.168.0.21:80; server 192.168.0.22:80; check interval=3000 rise=2 fall=5 timeout=1000 type=http; } The above configuration means that all nodes in the load balancing entry of name are checked every 3 seconds, and if the request is normal twice, it is marked The realserver status is up. If the detection fails 5 times, the realserver status is marked as down and the timeout period is 1 second. Here are the meanings of the instructions supported by the nginx_upstream_check_module module:
Default: If no parameter is configured, the default value is:
Context: upstream This command can enable the health check function of the backend server. The meaning of the parameters following the command is: interval: The interval of health check packets sent to the backend. fall(fall_count): If the number of consecutive failures reaches fall_count, the server is considered down. rise(rise_count): If the number of consecutive successes reaches rise_count, the server is considered up. timeout: The timeout period for backend health request. default_down: Sets the initial status of the server. If it is true, it means the default is down. If it is false, it is up. The default value is true, which means that the server is considered unavailable at first, and will not be considered healthy until the health check package reaches a certain number of successes. type: The type of health check package. Currently, the following types are supported: tcp: A simple tcp connection. If the connection is successful, it means the backend is normal. ssl_hello: Sends an initial SSL hello packet and receives an SSL hello packet from the server. http: Send HTTP request and determine whether the backend is alive based on the status of the backend reply packet. mysql: Connect to the MySQL server and determine whether the backend is alive by receiving the greeting packet from the server. ajp: Sends Cping packets of the AJP protocol to the backend and determines whether the backend is alive by receiving Cpong packets. port: specifies the inspection port of the backend server. You can specify a backend server port that is different from the actual service. For example, if the backend provides an application on port 443, you can check the status of port 80 to determine the health of the backend. The default value is 0, which means it is the same as the port used by the backend server to provide real services. This option appeared in Tengine-1.4.0. Additional knowledge: nginx timeout automatic retransmission 1. Phenomenon: When using nginx as a load loader, if the URL response exceeds a certain time (usually 10 minutes), the request will be automatically resent to another machine; 2. Reasons: In nignxi, automatic retransmission after timeout is enabled by default and needs to be turned off. 3. Solution: Add configuration in nginx:
The above article about nginx load balancing configuration and automatic switching method during downtime is all I want to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Solve the problem of using swiper plug-in in vue
Table of contents 0. The kernel tree that comes w...
This article shares the specific code of JavaScri...
This article originated from my complaints about ...
css3 background image related Compatibility: IE9+...
Background <br />Students who work on the fr...
In the MySQL database, after tables are associate...
System environment: Ubuntu 16.04LTS This article ...
Table of contents About FastDFS 1. Search for ima...
Cause: NVIDIA graphics card driver is damaged Sol...
Preface The notification bar component is a relat...
introduction In recent years, the call for TypeSc...
First look at the example code: #/bin/bash cal da...
Ubuntu16.04 install and uninstall pip Experimenta...
This article shares the specific code for WeChat ...
Note: This article has been translated by someone ...