View concurrent Website connections in nginx

Source: Internet
Author: User

By viewing the Nginx concurrent connections, we can clear the load of the website. There are two ways to view Nginx concurrency (the reason is that I only know two ways), one is through the web interface, the other is through the command, web View is more accurate than command view. The following two viewing methods are described:

No1. view in a browser
Nginx needs to enable the status module when viewing through the web interface, that is to install Nginx with -- with-http_stub_status_module and then configure Nginx. conf, add the following content in the server point

Location/status {
Stub_status on;
Access_log/usr/local/nginx/logs/status. log;
Auth_basic "NginxStatus ";}


After the configuration is complete, restart Nginx. Then, you can access http: // localhost/status in the browser, as shown in figure


Resolution:
Active connections // number of Active connections currently being processed by Nginx.
Server accepts handled requests // a total of 8 connections are processed, 8 handshakes are created successfully, and a total of 500 requests are processed.
Reading // Number of headers that nginx reads to the client.
Writing // Number of headers that nginx returns to the client.
Waiting // when keep-alive is enabled, this value is equal to active-(reading + writing), meaning Nginx has processed the resident connection Waiting for the next request command


No2, view through commands
# Netstat-n | awk '/^ tcp/{++ S [$ NF]} END {for (a in S) print a, S [a]}'

TIME_WAIT 17
ESTABLISHED 3254
LAST_ACK 236
FIN_WAIT_1 648
FIN_WAIT_2 581
CLOSING 7
CLOSE_WAIT 4916


Resolution:
CLOSED // No connection is active or in progress
LISTEN // the server is waiting for the incoming call
SYN_RECV // a connection request has arrived, waiting for confirmation
SYN_SENT // The application has started. Open a connection.
ESTABLISHED // normal data transmission status/current number of concurrent connections
FIN_WAIT1 // The application says it has been completed
FIN_WAIT2 // the other side has agreed to release
ITMED_WAIT // wait until all groups die
CLOSING // both sides attempt to close at the same time
TIME_WAIT // the other side has initialized a release
LAST_ACK // wait until all groups die



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.