To understand the backlog argument, we must realize that for a given listening socket, the kernel maintains two queues :
要明白backlog參數的含義,咱們必須明白對於一個listening socket,kernel維護者兩個隊列:
1.An incomplete connection queue, which contains an entry for each SYN that has arrived from a client for which the server is awaiting completion of the TCP three-way handshake. These sockets are in the SYN_RCVD state .
1.一個未完成鏈接的隊列,此隊列維護着那些已收到了客戶端SYN分節信息,等待完成三路握手的鏈接,socket的狀態是SYN_RCVD
2.A completed connection queue, which contains an entry for each client with whom the TCP three-way handshake has completed. These sockets are in the ESTABLISHED state
2.一個已完成的鏈接的隊列,此隊列包含了那些已經完成三路握手的鏈接,socket的狀態是ESTABLISHED
The backlog argument to the listen function has historically specified the maximum value for the sum of both queues.
backlog參數歷史上被定義爲上面兩個隊列的大小之和
Berkeley-derived implementations add a fudge factor to the backlog: It is multiplied by 1.5
Berkely實現中的backlog值爲上面兩隊列之和再乘以1.5
When a SYN arrives from a client, TCP creates a new entry on the incomplete queue and then responds with the second segment of the three-way handshake: the server's SYN with an ACK of the client's SYN (Section 2.6). This entry will remain on the incomplete queue until the third segment of the three-way handshake arrives (the client's ACK of the server's SYN), or until the entry times out. (Berkeley-derived implementations have a timeout of 75 seconds for these incomplete entries.)
當客戶端的第一個SYN到達的時候,TCP會在未完成隊列中增長一個新的記錄而後回覆給客戶端三路握手中的第二個分節(服務端的SYN和針對客戶端的ACK),這條記錄會在未完成隊列中一直存在,直到三路握手中的最後一個分節到達,或者直到超時(Berkeley時間將這個超時定義爲75秒)
If the queues are full when a client SYN arrives, TCP ignores the arriving SYN (pp. 930–931 of TCPv2); it does not send an RST. This is because the condition is considered temporary, and the client TCP will retransmit its SYN, hopefully finding room on the queue in the near future. If the server TCP immediately responded with an RST, the client's connect would return an error, forcing the application to handle this condition instead of letting TCP's normal retransmission take over. Also, the client could not differentiate between an RST in response to a SYN meaning "there is no server at this port" versus "there is a server at this port but its queues are full."
若是當客戶端SYN到達的時候隊列已滿,TCP將會忽略後續到達的SYN,可是不會給客戶端發送RST信息,由於此時容許客戶端重傳SYN分節,若是返回錯誤信息,那麼客戶端將沒法分清究竟是服務端對應端口上沒有相應應用程序仍是服務端對應端口上隊列已滿這兩種狀況php
經過下面方式能夠修改系統的 somaxconnvim
vim /etc/sysctl.confapp
net.core.somaxconn = 2048socket
sysctl -pide
在 php-fpm 中,有一個選項是關於這個方面的php-fpm
listen.backlog = -1this
這個數值,最好不要設置爲 -1 ,-1 的時候沒不能採用系統的設置數置,致使出現 502 出現spa
2015/02/11 12:37:22 [error] 25725#0: *1015645 connect() to unix:/tmp/php-cgi.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client: 222.240.64.190, unix
解決方法就是手動設置這個數值orm
listen.backlog = 1024