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