码迷,mamicode.com
首页 > 系统相关 > 详细

linux--ab压力测试详解

时间:2016-05-22 00:49:45      阅读:2102      评论:0      收藏:0      [点我收藏+]

标签:ab   压力测试 linux

简介

    abApache自带的压力测试工具,全称是ApacheBench,abApache的一个安装组件,所以需要安装Apache后才可以使用,该命令位于Apache安装目录下的bin文件夹中,ab是专门用于HTTP Serverbenchmark testing,可以同时模拟多个并发请求,ab的设计意图是描绘当前所安装的Apache的执行性能,主要是显示所安装的Apache每秒可以处理多少个请求,ab同微软的WASTHPLoadRunnerQALoad等比起来,它要方便易用得多,虽然ab不像LR那么强大,但它足够轻便,做一些场景比较简单的测试。

 


1、查询ab版本

    [root@www apache24]# ab -V

    This is ApacheBench, Version 2.3 <$Revision: 655654 $>

    Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/

    Licensed to The Apache Software Foundation, http://www.apache.org/


2、查询ab参数

    [root@www apache24]# ab -v

    ab: option requires an argument -- v

    ab: wrong number of arguments

    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

        -t timelimit    Seconds to max. wait for responses

        -b windowsize   Size of TCP send/receive buffer, in bytes

        -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 for POSTing, 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.

        -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 (SSL2, SSL3, TLS1, or ALL)



参数详解:

        -n 测试会话中所执行的请求个数,默认仅执行一个请求

        -c 一次产生的请求个数,即同一时间发出多少个请求,默认为一次一个

        -t 测试所进行的最大秒数,默认为无时间限制....其内部隐含值是[-n 50000],它可以使对服务器的测试限制在一个固定的总时间以内

        -p 包含了需要POST的数据的文件

        -T POST数据所使用的Content-type头信息

        -v 设置显示信息的详细程度

        -w HTML表格的形式输出结果,默认是白色背景的两列宽度的一张表

        -i HTML表格的形式输出结果,默认是白色背景的两列宽度的一张表

        -x 设置<table>属性的字符串,此属性被填入<table 这里>

        -y 设置<tr>属性的字符串

        -z 设置<td>属性的字符串

        -C 对请求附加一个Cookie行,其典型形式是name=value的参数对,此参数可以重复

        -H 对请求附加额外的头信息,此参数的典型形式是一个有效的头信息行,其中包含了以冒号分隔的字段和值的对("Accept-Encoding: zip/zop;8bit")

        -A HTTP验证,用冒号:分隔传递用户名及密码

        -P 无论服务器是否需要(即是否发送了401认证需求代码),此字符串都会被发送

        -X 对请求使用代理服务器

        -V 显示版本号并退出

        -k 启用HTTP KeepAlive功能,即在一个HTTP会话中执行多个请求,默认为不启用KeepAlive功能

        -d 不显示"percentage served within XX [ms] table"的消息(为以前的版本提供支持)

        -S 不显示中值和标准背离值,且均值和中值为标准背离值的12倍时,也不显示警告或出错信息,默认会显示最小值/均值/最大值等(为以前的版本提供支持)

        -g 把所有测试结果写入一个‘gnuplot‘或者TSV(Tab分隔的)文件

        -e 产生一个以逗号分隔的(CSV)文件,其中包含了处理每个相应百分比的请求所需要(1%100%)的相应百分比的(以微妙为单位)时间

        -h 显示使用方法

        -k 发送keep-alive指令到服务器端




示例:

        # ab -c 10 -n 1000 http://172.18.253.132/index.html           // -c 10 表示并发用户数为10; -n 1000 表示总请求数为1000


            Server Software:        Apache/2.4.6       //被测试的Web服务器软件名称

            Server Hostname:        172.18.253.132   //请求的URL中的主机部分名称

            Server Port:            80    //被测试的Web服务器软件的监听端口


            Document Path:          /index.html    //请求的URL中根绝对路径

            Document Length:        23 bytes  //http响应数据的正文长度


            Concurrency Level:      100                         //并发级别

            Time taken for tests:   0.189 seconds       //有这些请求被处理完成花费的总时间

            Complete requests:      1000                    //总请求数;完成的请求数量

            Failed requests:        0       //失败的请求数

            Write errors:           0                                 //发送响应失败的次数

            Total transferred:      314000 bytes           //所有请求的响应数据长度总和,包括每个http响应数据的头信息和正文数据的长度。注意这里不包括http请求数据的长度

            HTML transferred:       23000 bytes          //表示所有请求的响应数据中正文数据的总和,也就是减去了Total transferred中http响应数据中头信息的长度

            Requests per second:    5297.00 [#/sec] (mean)     //每秒钟完成多少个请求,即吞吐率

            Time per request:       1.888 [ms] (mean)      //服务器平均请求处理的时间,即每个请求实际运行时间的平均值,其值为Time per request/Concurrency Leve

            Time per request:       0.189 [ms] (mean, across all concurrent requests)  //平均每秒网络上的流量,即这些请求在单位内从服务器获取的数据长度,其值为(Total transferred/Time taken for tests)/1024 

            Transfer rate:          1624.28 [Kbytes/sec] received   //这个统计选项可以很好的说明服务器在处理能力达到极限时其出口带宽的需求量,可以帮助排除是否存在网络流量过大导致响应时间延长的问题

            Connection Times (ms)   //网络上消耗的时间的分解

                                          min  mean[+/-sd] median   max

            Connect:                    0    0           0.2          0         3        //建立连接

            Processing:               1    2            1.1          1       13       //服务器端处理连接

            Waiting:                    0    2            1.0          1       13       //客户端等待服务器端响应

            Total:                         1    2            1.1          1       13

            Percentage of the requests served within a certain time (ms)

            50%      1

            66%      2

            75%      2

            80%      2

            90%      3

            95%      4

            98%      5

            99%      5

            100%     13 (longest request)

//上面结果表明,50%的用户响应时间(即请求处理时间,这里处理时间是指Time per request)小于1毫秒,66%的用户响应时间小于2毫秒,而最大的响应时间小于13毫秒



linux--ab压力测试详解

标签:ab   压力测试 linux

原文地址:http://1832924799.blog.51cto.com/11226449/1775758

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!