> CentOS > CentOS教程 >

CentOS7对Apache+PHP 负载能力ab测试

使用的系统信息:

[php] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. [root@localhost ~]# uname -a  
  2. Linux localhost.localdomain 3.15.4-x86_64-linode45 #1 SMP Mon Jul 7 08:42:36 EDT  
  3.  2014 x86_64 x86_64 x86_64 GNU/Linux  
  4. [root@localhost ~]# php -v  
  5. PHP 5.4.16 (cli) (built: Aug  6 2014 13:12:28)  
  6. Copyright (c) 1997-2013 The PHP Group  
  7. Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies  
  8. [root@localhost ~]# httpd -v  
  9. Server version: Apache/2.4.6 (CentOS)  
  10. Server built:   Jul 23 2014 14:48:00  
  11. [root@localhost ~]#  

ab测试 phpinfo() 结果:吞吐量 759!

[plain] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. D:\wamp\bin\apache\apache2.4.9\bin>ab -n 100 -c 10 http://linode.zbphp.com/  
  2. This is ApacheBench, Version 2.3 <$Revision: 1554214 $>  
  3. Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/  
  4. Licensed to The Apache Software Foundation, http://www.apache.org/  
  5.   
  6. Benchmarking linode.zbphp.com (be patient).....done  
  7.   
  8.   
  9. Server Software:        Apache/2.4.6  
  10. Server Hostname:        linode.zbphp.com  
  11. Server Port:            80  
  12.   
  13. Document Path:          /  
  14. Document Length:        52627 bytes  
  15.   
  16. Concurrency Level:      10  
  17. Time taken for tests:   7.592 seconds  
  18. Complete requests:      100  
  19. Failed requests:        14  
  20.    (Connect: 0, Receive: 0, Length: 14, Exceptions: 0)  
  21. Total transferred:      5280981 bytes  
  22. HTML transferred:       5262681 bytes  
  23. Requests per second:    13.17 [#/sec] (mean)  
  24. Time per request:       759.206 [ms] (mean)  
  25. Time per request:       75.921 [ms] (mean, across all concurrent requests)  
  26. Transfer rate:          679.29 [Kbytes/sec] received  
  27.   
  28. Connection Times (ms)  
  29.               min  mean[+/-sd] median   max  
  30. Connect:       60   73   4.7     70      80  
  31. Processing:   208  635 101.4    660     690  
  32. Waiting:       70  237 120.5    220     640  
  33. Total:        279  708 101.5    740     770  
  34.   
  35. Percentage of the requests served within a certain time (ms)  
  36.   50%    740  
  37.   66%    740  
  38.   75%    740  
  39.   80%    745  
  40.   90%    750  
  41.   95%    760  
  42.   98%    760  
  43.   99%    770  
  44.  100%    770 (longest request)  
  45.   
  46. D:\wamp\bin\apache\apache2.4.9\bin>  
  47.  

(责任编辑:IT)