900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > web压力测试工具ab安装及使用

web压力测试工具ab安装及使用

时间:2020-05-26 06:33:16

相关推荐

web压力测试工具ab安装及使用

​## 安装

brew install aprbrew install apr-utilbrew install openssl --upgradewget http://mirrors.tuna./apache//httpd/httpd-2.4.33.tar.gztar zxvf httpd-2.4.33.tar.gz cd httpd-2.4.33./configure --with-apr=/usr/local/opt/apr --with-apr-util=/usr/local/opt/apr-util --prefix=/usr/local/apache --with-ssl=/usr/local/opt/openssl --enable-ssl --enable-cgi --enable-rewrite --with-zlib --with-pcre --with-mpm=prefork --enable-modules=most --enable-mpms-shared=allsudo make sudo make install

测试

cd /usr/local/apache/bin/ulimit -n 10000./ab -V./ab -n 1000 -c 1000 -t 1

结果

This is ApacheBench, Version 2.3 <Revision: 1826891 >Copyright 1996 Adam Twiss, Zeus Technology Ltd, /Licensed to The Apache Software Foundation, /Benchmarking (be patient)Finished 355 requestsServer Software: nginx# 被测试的Web服务器软件名称Server Hostname: # 请求的URL主机名Server Port: 443 # 被测试的Web服务器软件的监听端口SSL/TLS Protocol: TLSv1.2,ECDHE-RSA-AES256-GCM-SHA384,2048,256TLS Server Name: Document Path:/news/index # 请求的URL中的根绝对路径,通过该文件的后缀名,我们一般可以了解该请求的类型Document Length: 0 bytes # HTTP响应数据的正文长度Concurrency Level:1000# 并发用户数,这是我们设置的参数之一Time taken for tests: 1.007 seconds # 所有这些请求被处理完成所花费的总时间Complete requests:355 # 完成请求数Failed requests: 0 # 失败的请求数量,这里的失败是指请求在连接服务器、发送数据等环节发生异常,以及无响应后超时的情况。如果接收到的HTTP响应数据的头信息中含有2XX以外的状态码,则会在测试结果中显示另一个名为 “Non-2xx responses”的统计项,用于统计这部分请求数,这些请求并不算在失败的请求中。Non-2xx responses:380Total transferred:187720 bytes # 网络总传输量 HTML transferred: 0 bytes # HTML内容传输量Requests per second: 352.54 [#/sec] (mean) # 吞吐量-每秒请求数Time per request: 2836.555 [ms] (mean)# 服务器收到请求,响应页面要花费的时间 Time per request: 2.837 [ms] (mean, across all concurrent requests) # 平均每秒网络上的流量,可以帮助排除是否存在网络流量过大导致响应时间延长的问题Transfer rate:182.05 [Kbytes/sec] received网络上消耗的时间的分解:Connection Times (ms)min mean[+/-sd] median maxConnect: 62 339 146.0 389730Processing: 36 77 21.077131Waiting: 19 75 20.277121Total: 123 416 156.4 477817整个场景中所有请求的响应情况。在场景中每个请求都有一个响应时间 其中 50% 的用户响应时间小于 473 毫秒 80 % 的用户响应时间小于 537 毫秒 最大的响应时间小于 817 毫秒 Percentage of the requests served within a certain time (ms)50% 47366% 51175% 51980% 53790% 58095% 60798% 78299% 805100% 817 (longest request)

结果分析

Server Software 表示被测试的Web服务器软件名称Server Hostname 表示请求的URL主机名Server Port 表示被测试的Web服务器软件的监听端口Document Path 表示请求的URL中的根绝对路径,通过该文件的后缀名,我们一般可以了解该请求的类型Document Length 表示HTTP响应数据的正文长度Concurrency Level 表示并发用户数,这是我们设置的参数之一Time taken for tests 表示所有这些请求被处理完成所花费的总时间Complete requests 表示总请求数量,这是我们设置的参数之一Failed requests 表示失败的请求数量,这里的失败是指请求在连接服务器、发送数据等环节发生异常,以及无响应后超时的情况。如果接收到的HTTP响应数据的头信息中含有2XX以外的状态码,则会在测试结果中显示另一个名为 “Non-2xx responses”的统计项,用于统计这部分请求数,这些请求并不算在失败的请求中。Total transferred 表示所有请求的响应数据长度总和,包括每个HTTP响应数据的头信息和正文数据的长度。注意这里不包括HTTP请求数据的长度,仅仅为web服务器流向用户PC的应用层数据总长度。HTML transferred 表示所有请求的响应数据中正文数据的总和,也就是减去了Total transferred中HTTP响应数据中的头信息的长度。Requests per second 吞吐率,计算公式:Complete requests / Time taken for testsTime per request 用户平均请求等待时间,计算公式:Time token for tests/(Complete requests/Concurrency Level)Time per requet(across all concurrent request) 服务器平均请求等待时间,计算公式:Time taken for tests/Complete requests,正好是吞吐率的倒数。也可以这么统计:Time per request/Concurrency LevelTransfer rate 表示这些请求在单位时间内从服务器获取的数据长度,计算公式:Total trnasferred/ Time taken for tests,这个统计很好的说明服务器的处理能力达到极限时,其出口宽带的需求量。Percentage of requests served within a certain time(ms) 这部分数据用于描述每个请求处理时间的分布情况,比如以上测试,80%的请求处理时间都不超过6ms,这个处理时间是指前面的Time per request,即对于单个用户而言,平均每个请求的处理时间。

重点分析

Requests per second

Time per request

Percentage of requests served within a certain time(ms)

参数说明

格式:ab optionshostname[:port]/path-n requests Number of requests to perform//在测试会话中所执行的请求个数(本次测试总共要访问页面的次数)。默认时,仅执行一个请求。-c concurrency Number of multiple requests to make//一次产生的请求个数(并发数)。默认是一次一个。-t timelimit Seconds to max. wait for responses//测试所进行的最大秒数。其内部隐含值是-n 50000。它可以使对服务器的测试限制在一个固定的总时间以内。默认时,没有时间限制。-p postfile File containing data to POST//包含了需要POST的数据的文件,文件格式如“p1=1&p2=2”.使用方法是 -p 111.txt 。 (配合-T)-T content-type Content-type header for POSTing//POST数据所使用的Content-type头信息,如 -T “application/x-www-form-urlencoded” 。 (配合-p)-v verbosity How much troubleshooting info to print//设置显示信息的详细程度 – 4或更大值会显示头信息, 3或更大值可以显示响应代码(404, 200等), 2或更大值可以显示警告和其他信息。 -V 显示版本号并退出。-w Print out results in HTML tables//以HTML表的格式输出结果。默认时,它是白色背景的两列宽度的一张表。-i Use HEAD instead of GET// 执行HEAD请求,而不是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. -C “c1=1234,c2=2,c3=3″ (repeatable)//-C cookie-name=value 对请求附加一个Cookie:行。 其典型形式是name=value的一个参数对。此参数可以重复,用逗号分割。提示:可以借助session实现原理传递 JSESSIONID参数, 实现保持会话的功能,如-C ” c1=1234,c2=2,c3=3, JSESSIONID=FF056CD16DA9D71CB131C1D56F0319F8″ 。-H attribute Add Arbitrary header line, eg. ‘Accept-Encoding: gzip’ Inserted after all normal header lines. (repeatable)-A attribute Add Basic WWW Authentication, the attributesare a colon separated username and password.-P attribute Add Basic Proxy Authentication, the attributesare a colon separated username and password.//-P proxy-auth-username:password 对一个中转代理提供BASIC认证信任。用户名和密码由一个:隔开,并以base64编码形式发送。无论服务器是否需要(即, 是否发送了401认证需求代码),此字符串都会被发送。-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-h Display usage information (this message)//-attributes 设置属性的字符串. 缺陷程序中有各种静态声明的固定长度的缓冲区。另外,对命令行参数、服务器的响应头和其他外部输入的解析也很简单,这可能会有不良后果。它没有完整地实现 HTTP/1.x; 仅接受某些’预想’的响应格式。 strstr(3)的频繁使用可能会带来性能问题,即你可能是在测试ab而不是服务器的性能。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。