Nginx load balancing configuration, automatic switching mode when downtime occurs

Nginx load balancing configuration, automatic switching mode when downtime occurs

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:

Syntax: check interval=milliseconds [fall=count] [rise=count] [timeout=milliseconds] [default_down=true|false] [type=tcp|http|ssl_hello|mysql|ajp] [port=check_port]

Default: If no parameter is configured, the default value is:

interval=30000 fall=5 rise=2 timeout=1000 default_down=true type=tcp

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:

proxy_next_upstream off;

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:
  • 4 configuration examples of Nginx load balancing
  • Nginx load balancing configuration simple configuration method
  • 5 ways to configure nginx load balancing
  • Analysis of Nginx cluster load balancing configuration process
  • Nginx simple load balancing configuration example
  • Detailed explanation of Linux system configuration nginx load balancing
  • Simple configuration method of nginx load balancing
  • How to configure Nginx load balancing
  • Super detailed nginx load balancing configuration

<<:  Solve the problem of using swiper plug-in in vue

>>:  Detailed explanation of the reason why the MySQL 5.7 slow query log time is 8 hours behind the system time

Recommend

Linux five-step build kernel tree

Table of contents 0. The kernel tree that comes w...

JavaScript implements draggable progress bar

This article shares the specific code of JavaScri...

Linux bridge method steps to bridge two VirtualBox virtual networks

This article originated from my complaints about ...

Detailed description of component-based front-end development process

Background <br />Students who work on the fr...

Practical method of deleting associated tables in MySQL

In the MySQL database, after tables are associate...

Implementation of docker redis5.0 cluster cluster construction

System environment: Ubuntu 16.04LTS This article ...

Building FastDFS file system in Docker (multi-image tutorial)

Table of contents About FastDFS 1. Search for ima...

Three notification bar scrolling effects implemented with pure CSS

Preface The notification bar component is a relat...

How to use TypeScript in Vue

introduction In recent years, the call for TypeSc...

Detailed explanation of daily_routine example code in Linux

First look at the example code: #/bin/bash cal da...

WeChat applet scroll-view realizes left and right linkage

This article shares the specific code for WeChat ...

The forgotten button tag

Note: This article has been translated by someone ...