ab命令会创建多个并发访问线程,模拟多个访问者同时对某一URL地址进行访问。它的测试目标是基于URL的,因此,它既可以用来测试apache的负载压力,也可以测试nginx、lighthttp、tomcat、IIS等其它Web服务器的压力

    1. [root@n9e ~]# yum provides ab
    2. Loaded plugins: fastestmirror
    3. Loading mirror speeds from cached hostfile
    4. * base: mirrors.aliyun.com
    5. * extras: mirrors.aliyun.com
    6. * updates: mirrors.aliyun.com
    7. httpd-tools-2.4.6-93.el7.centos.x86_64 : Tools for use with the Apache HTTP Server
    8. Repo : base
    9. Matched from:
    10. Filename : /usr/bin/ab
    11. [root@n9e ~]#
    1. [root@n9e ~]# yum install httpd-tools -y
    2. Loaded plugins: fastestmirror
    3. Loading mirror speeds from cached hostfile
    4. * base: mirrors.aliyun.com
    5. * extras: mirrors.aliyun.com
    6. * updates: mirrors.aliyun.com
    7. Resolving Dependencies
    8. --> Running transaction check
    9. ---> Package httpd-tools.x86_64 0:2.4.6-93.el7.centos will be installed
    10. --> Finished Dependency Resolution
    11. Dependencies Resolved
    12. ===============================================================================================================================
    13. Package Arch Version Repository Size
    14. ===============================================================================================================================
    15. Installing:
    16. httpd-tools x86_64 2.4.6-93.el7.centos base 92 k
    17. Transaction Summary
    18. ===============================================================================================================================
    19. Install 1 Package
    20. Total download size: 92 k
    21. Installed size: 168 k
    22. Downloading packages:
    23. httpd-tools-2.4.6-93.el7.centos.x86_64.rpm | 92 kB 00:00:02
    24. Running transaction check
    25. Running transaction test
    26. Transaction test succeeded
    27. Running transaction
    28. Installing : httpd-tools-2.4.6-93.el7.centos.x86_64 1/1
    29. Verifying : httpd-tools-2.4.6-93.el7.centos.x86_64 1/1
    30. Installed:
    31. httpd-tools.x86_64 0:2.4.6-93.el7.centos
    32. Complete!
    33. [root@n9e ~]#
    1. [root@n9e ~]# ab -help
    2. Usage: ab [options] [http[s]://]hostname[:port]/path
    3. Options are:
    4. -n requests Number of requests to perform
    5. -c concurrency Number of multiple requests to make at a time
    6. -t timelimit Seconds to max. to spend on benchmarking
    7. This implies -n 50000
    8. -s timeout Seconds to max. wait for each response
    9. Default is 30 seconds
    10. -b windowsize Size of TCP send/receive buffer, in bytes
    11. -B address Address to bind to when making outgoing connections
    12. -p postfile File containing data to POST. Remember also to set -T
    13. -u putfile File containing data to PUT. Remember also to set -T
    14. -T content-type Content-type header to use for POST/PUT data, eg.
    15. 'application/x-www-form-urlencoded'
    16. Default is 'text/plain'
    17. -v verbosity How much troubleshooting info to print
    18. -w Print out results in HTML tables
    19. -i Use HEAD instead of GET
    20. -x attributes String to insert as table attributes
    21. -y attributes String to insert as tr attributes
    22. -z attributes String to insert as td or th attributes
    23. -C attribute Add cookie, eg. 'Apache=1234'. (repeatable)
    24. -H attribute Add Arbitrary header line, eg. 'Accept-Encoding: gzip'
    25. Inserted after all normal header lines. (repeatable)
    26. -A attribute Add Basic WWW Authentication, the attributes
    27. are a colon separated username and password.
    28. -P attribute Add Basic Proxy Authentication, the attributes
    29. are a colon separated username and password.
    30. -X proxy:port Proxyserver and port number to use
    31. -V Print version number and exit
    32. -k Use HTTP KeepAlive feature
    33. -d Do not show percentiles served table.
    34. -S Do not show confidence estimators and warnings.
    35. -q Do not show progress when doing more than 150 requests
    36. -g filename Output collected data to gnuplot format file.
    37. -e filename Output CSV file with percentages served
    38. -r Don't exit on socket receive errors.
    39. -h Display usage information (this message)
    40. -Z ciphersuite Specify SSL/TLS cipher suite (See openssl ciphers)
    41. -f protocol Specify SSL/TLS protocol
    42. (SSL3, TLS1, TLS1.1, TLS1.2 or ALL)
    43. [root@n9e ~]#
    1. [root@n9e ~]# ab -c 100 -n 1000 http://10.182.220.135/
    2. This is ApacheBench, Version 2.3 <$Revision: 1430300 $>
    3. Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
    4. Licensed to The Apache Software Foundation, http://www.apache.org/
    5. Benchmarking 10.182.220.135 (be patient)
    6. Completed 100 requests
    7. Completed 200 requests
    8. Completed 300 requests
    9. Completed 400 requests
    10. Completed 500 requests
    11. Completed 600 requests
    12. Completed 700 requests
    13. Completed 800 requests
    14. Completed 900 requests
    15. Completed 1000 requests
    16. Finished 1000 requests
    17. Server Software: nginx/1.16.1
    18. Server Hostname: 10.182.220.135
    19. Server Port: 80
    20. Document Path: /
    21. Document Length: 350 bytes
    22. Concurrency Level: 100
    23. Time taken for tests: 1.343 seconds
    24. Complete requests: 1000
    25. Failed requests: 0
    26. Write errors: 0
    27. Total transferred: 583000 bytes
    28. HTML transferred: 350000 bytes
    29. Requests per second: 744.40 [#/sec] (mean)
    30. Time per request: 134.337 [ms] (mean)
    31. Time per request: 1.343 [ms] (mean, across all concurrent requests)
    32. Transfer rate: 423.81 [Kbytes/sec] received
    33. Connection Times (ms)
    34. min mean[+/-sd] median max
    35. Connect: 4 20 63.0 16 1012
    36. Processing: 4 16 5.7 15 30
    37. Waiting: 4 15 5.7 15 29
    38. Total: 8 36 62.2 33 1018
    39. Percentage of the requests served within a certain time (ms)
    40. 50% 33
    41. 66% 33
    42. 75% 33
    43. 80% 34
    44. 90% 34
    45. 95% 35
    46. 98% 38
    47. 99% 42
    48. 100% 1018 (longest request)
    49. [root@n9e ~]#
    1. Server Software: nginx
    2. Server Hostname: 127.0.0.1
    3. Server Port: 80
    4. Document Path: /wordpress
    5. Document Length: 178 bytes #请求大小
    6. Concurrency Level: 10000 #并发请求量
    7. Time taken for tests: 7.926 seconds #整个测试持续时间
    8. Complete requests: 100000 #完成的请求数
    9. Failed requests: 0 #失败的请求数
    10. Write errors: 0
    11. Non-2xx responses: 100000
    12. Total transferred: 36800000 bytes #整个场景中网络传输量
    13. HTML transferred: 17800000 bytes #整个场景中的HTML内容传输量
    14. Requests per second: 12615.91 [#/sec] (mean) #吞吐速率,大家最关心的指标之一
    15. Time per request: 792.650 [ms] (mean) #用户平均请求等待时间,大家最关心的指标之二
    16. Time per request: 0.079 [ms] (mean, across all concurrent requests) #服务器平均请求处理的时间,大家最关心的指标之三
    17. Transfer rate: 4533.84 [Kbytes/sec] received #平均每秒网络上的流量,可以帮助排除是否有存在网络流量过大导致响应时间延长的问题
    18. Connection Times (ms)
    19. min mean[+/-sd] median max
    20. Connect: 0 510 1056.6 3 7026
    21. Processing: 3 28 89.9 8 1889
    22. Waiting: 0 25 89.4 6 1887
    23. Total: 7 538 1079.8 12 7240
    24. Percentage of the requests served within a certain time (ms)
    25. 50% 12
    26. 66% 22
    27. 75% 1016
    28. 80% 1022
    29. 90% 1231
    30. 95% 3027
    31. 98% 3232
    32. 99% 3828
    33. 100% 7240 (longest request)