sdtf08 发表于 2018-11-29 09:52:59

查看Apache并发连接数及其TCP连接状态

查看Apache并发连接数及其TCP连接状态【转】
  作者:张宴
  这两天搭建了一组Apache服务器,每台服务器4G内存,采用的是prefork模式,一开始设置的连接数太少了,需要较长的时间去响应用户的请 求,后来修改了一下Apache 2.0.59的配置文件httpd.conf:

Httpd.conf代码http://koda.iteye.com/images/icon_star.pnghttp://koda.iteye.com/images/spinner.gif

[*]# prefork MPM
[*]# StartServers: number of server processes to start
[*]# MinSpareServers: minimum number of server processes which are kept spare
[*]# MaxSpareServers: maximum number of server processes which are kept spare
[*]# MaxClients: maximum number of server processes allowed to start
[*]# MaxRequestsPerChild: maximum number of requests a server process serves
[*]
[*]StartServers         10
[*]MinSpareServers      10
[*]MaxSpareServers      15
[*]ServerLimit          2000
[*]MaxClients         2000
[*]MaxRequestsPerChild10000
  

  
# prefork MPM
  
# StartServers: number of server processes to start
  
# MinSpareServers: minimum number of server processes which are kept spare
  
# MaxSpareServers: maximum number of server processes which are kept spare
  
# MaxClients: maximum number of server processes allowed to start
  
# MaxRequestsPerChild: maximum number of requests a server process serves
  

  
StartServers         10
  
MinSpareServers      10
  
MaxSpareServers      15
  
ServerLimit          2000
  
MaxClients         2000
  
MaxRequestsPerChild10000
  

  

  查看httpd进程数(即prefork模式下 Apache能够处理的并发请求数):
  Linux命令:

Linux代码http://koda.iteye.com/images/icon_star.pnghttp://koda.iteye.com/images/spinner.gif

[*]ps -ef | grep httpd | wc -l
  

  
ps -ef | grep httpd | wc -l
  

  返回结果示例:
  1388
  表示Apache能够处理1388个并 发请求,这个值Apache可根据负载情况自动调整,我这组服务器中每台的峰值曾达到过2002。
  查看Apache的并发请 求数及其TCP连接状态:
  Linux命令:

Linux代码http://koda.iteye.com/images/icon_star.pnghttp://koda.iteye.com/images/spinner.gif

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

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

  

  (这条语句是从新浪互动社区事业部技术总监王老大那儿获得的,非常不错)
  返回结果示例:
  LAST_ACK 5
  SYN_RECV 30
  ESTABLISHED 1597
  FIN_WAIT1 51
  FIN_WAIT2 504
  TIME_WAIT 1057
  其中的SYN_RECV表示正在等待处理的请求数;ESTABLISHED表示正常数据传输状态;TIME_WAIT表示处理完毕, 等待超时结束的请求数。
  关于TCP状态的变迁,可以看出:
  状态:描述
  CLOSED:无连接是活动的或正在进行
  LISTEN:服务器在等待进入呼叫
  SYN_RECV:一个连接请求已经到达,等待确认
  SYN_SENT:应用已经开始,打开一个连接
  ESTABLISHED:正常 数据传输状态
  FIN_WAIT1:应用说它已经完成
  FIN_WAIT2:另一边已同意释放
  ITMED_WAIT:等 待所有分组死掉
  CLOSING:两边同时尝试关闭
  TIME_WAIT:另一边已初始化一个释放
  LAST_ACK:等 待所有分组死掉


页: [1]
查看完整版本: 查看Apache并发连接数及其TCP连接状态