Home Operation and Maintenance Linux Operation and Maintenance Detailed introduction on how to check the number of concurrent connections and connection status of Nginx under Linux

Detailed introduction on how to check the number of concurrent connections and connection status of Nginx under Linux

Jun 07, 2017 am 10:34 AM

Linux Check the number of concurrent connections and connection status of Nginx, etc.

1. Check the number of concurrent requests of the Web server (Nginx Apache) and its TCP connection status:

netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'
Copy after login

Or:

netstat -n | awk '/ ^tcp/ {++state[$NF]} END {for(key in state) print key,"t",state[key]}'The return result is generally as follows:

LAST_ACK 5 (正在等待处理的请求数)
SYN_RECV 30 
ESTABLISHED 1597 (正常数据传输状态) 
FIN_WAIT1 51 
FIN_WAIT2 504 
TIME_WAIT 1057 (处理完毕,等待超时结束的请求数)
Copy after login

Other parameter descriptions:

CLOSED: No connection is active or in progress

LISTEN: The server is waiting for incoming calls

SYN_RECV: A The connection request has arrived, waiting for confirmation

SYN_SENT: The application has started, opening a connection

ESTABLISHED: Normal data transfer status

FIN_WAIT1: The application says it has completed

FIN_WAIT2: The other side has agreed to release

ITMED_WAIT: Wait for all groups to die

CLOSING: Both sides try to close at the same time

TIME_WAIT: Another A release has been initialized on one side

LAST_ACK: Waiting for all packets to die

The three commonly used states are: ESTABLISHED means communicating, TIME_WAIT means active closing, and CLOSE_WAIT means passive closing.

The TCP protocol stipulates that for an established connection, both parties on the network must perform four handshakes to successfully disconnect. If one of these steps is missing, the connection will be in a state of suspended animation and the resources occupied by the connection itself will will not be released. The network server program must manage a large number of connections at the same time, so it is necessary to ensure that useless connections are completely disconnected, otherwise a large number of dead connections will waste a lot of server resources. Among the many TCP states, there are two most noteworthy states: CLOSE_WAIT and TIME_WAIT.

TIME_WAIT

TIME_WAIT is formed when the link is actively closed, waiting for 2MSL time, about 4 minutes. Mainly to prevent the last ACK from being lost. Since TIME_WAIT will take a very long time, the server should try to minimize the number of active connections closed

CLOSE_WAIT

CLOSE_WAIT is formed by passively closing connections. According to the TCP state machine, when the server receives the FIN sent by the client, it sends ACK according to the TCP implementation, so it enters the CLOSE_WAIT state. However, if the server does not execute close(), it cannot migrate from CLOSE_WAIT to LAST_ACK, and there will be many connections in the CLOSE_WAIT state in the system. At this time, it may be that the system is busy processing read and write operations and has not closed the connection that has received FIN. At this time, recv/read has received the FIN connection socket and will return 0.

Why do we need TIME_WAIT state?

Assuming that the final ACK is lost, the server will resend the FIN. The client must maintain TCP status information so that the final ACK can be resent. Otherwise, RST will be sent, resulting in the server thinking that an error has occurred. TCP implementations must reliably terminate both directions of the connection (full duplex closed), and the client must enter the TIME_WAIT state because the client may be faced with retransmitting the final ACK.

Why does the TIME_WAIT state need to remain 2MSL for such a long time?

If the TIME_WAIT state is not maintained long enough (for example, less than 2MSL), the first connection will be terminated normally. A second connection appears with the same associated quintuple, and duplicate packets from the first connection arrive, interfering with the second connection. The TCP implementation must prevent duplicate messages from a certain connection from appearing after the connection is terminated, so keep the TIME_WAIT state long enough (2MSL), and the TCP messages in the corresponding direction of the connection will either be completely responded to or discarded. There is no confusion when establishing a second connection.

Too many sockets in TIME_WAIT and CLOSE_WAIT status

If the server is abnormal, 80% to 90% of the time it will be the following two situations:

1. The server maintains a large number of TIME_WAIT status

2. The server maintains a large number of CLOSE_WAIT status. Simply put, the excessive number of CLOSE_WAIT is caused by improper passive closingconnection processing.

Because the file handle allocated to a user by Linux is limited, and if the two states of TIME_WAIT and CLOSE_WAIT are always maintained, it means that the corresponding number of channels are always occupied, and they are "occupying the pit" No effort", once the upper limit of the number of handles is reached, new requests cannot be processed, followed by a large number of Too Many Open Files exceptions, and Tomcat crashes.

The above is the detailed content of Detailed introduction on how to check the number of concurrent connections and connection status of Nginx under Linux. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What computer configuration is required for vscode What computer configuration is required for vscode Apr 15, 2025 pm 09:48 PM

VS Code system requirements: Operating system: Windows 10 and above, macOS 10.12 and above, Linux distribution processor: minimum 1.6 GHz, recommended 2.0 GHz and above memory: minimum 512 MB, recommended 4 GB and above storage space: minimum 250 MB, recommended 1 GB and above other requirements: stable network connection, Xorg/Wayland (Linux)

vscode cannot install extension vscode cannot install extension Apr 15, 2025 pm 07:18 PM

The reasons for the installation of VS Code extensions may be: network instability, insufficient permissions, system compatibility issues, VS Code version is too old, antivirus software or firewall interference. By checking network connections, permissions, log files, updating VS Code, disabling security software, and restarting VS Code or computers, you can gradually troubleshoot and resolve issues.

Can vscode be used for mac Can vscode be used for mac Apr 15, 2025 pm 07:36 PM

VS Code is available on Mac. It has powerful extensions, Git integration, terminal and debugger, and also offers a wealth of setup options. However, for particularly large projects or highly professional development, VS Code may have performance or functional limitations.

What is vscode What is vscode for? What is vscode What is vscode for? Apr 15, 2025 pm 06:45 PM

VS Code is the full name Visual Studio Code, which is a free and open source cross-platform code editor and development environment developed by Microsoft. It supports a wide range of programming languages ​​and provides syntax highlighting, code automatic completion, code snippets and smart prompts to improve development efficiency. Through a rich extension ecosystem, users can add extensions to specific needs and languages, such as debuggers, code formatting tools, and Git integrations. VS Code also includes an intuitive debugger that helps quickly find and resolve bugs in your code.

How to run java code in notepad How to run java code in notepad Apr 16, 2025 pm 07:39 PM

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

What is the main purpose of Linux? What is the main purpose of Linux? Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

How to use VSCode How to use VSCode Apr 15, 2025 pm 11:21 PM

Visual Studio Code (VSCode) is a cross-platform, open source and free code editor developed by Microsoft. It is known for its lightweight, scalability and support for a wide range of programming languages. To install VSCode, please visit the official website to download and run the installer. When using VSCode, you can create new projects, edit code, debug code, navigate projects, expand VSCode, and manage settings. VSCode is available for Windows, macOS, and Linux, supports multiple programming languages ​​and provides various extensions through Marketplace. Its advantages include lightweight, scalability, extensive language support, rich features and version

vscode Previous Next Shortcut Key vscode Previous Next Shortcut Key Apr 15, 2025 pm 10:51 PM

VS Code One-step/Next step shortcut key usage: One-step (backward): Windows/Linux: Ctrl ←; macOS: Cmd ←Next step (forward): Windows/Linux: Ctrl →; macOS: Cmd →

See all articles