一、前言
1.ApacheBench 是 Apache 服务器自带的一个web压力测试工具,简称ab。ab又是一个命令行工具,对发起负载的本机要求很低,
根据ab命令可以创建很多的并发访问线程,
模拟多个访问者同时对某一URL地址进行访问,因此可以用来测试目标服务器的负载压力。总的来说ab工具小巧简单,上手学习较快,
可以提供需要的基本性能指标,但是没有图形化结果,不能监控。
比较适合压测一些请求参数固定的服务与接口
2.建议使用内网的另一台或者多台服务器通过内网进行测试,这样得出的数据,准确度会高很多。远程对web服务器进行压力测试,
往往效果不理想(因为网络延时过大或带宽不足)
3.Windows下Apache的运行模块一般为winnt,是专门针对Windows NT优化的MPM(多路处理模块),它使用一个单独的父进程产生一个单独的子进程,
在这个子进程中轮流产生多个线程来处理请求。
也就是说 mpm_winnt只能启动父子两个进程, 不能像Linux下那样同时启动多个进程。所以建议使用Linux作为ab压测机。
二、重点说一下Linux下ab的安装与使用
1.安装下载
yum -y install gcc gcc-c++ automake apr apr-util pcre apr-devel apr-util-devel pcre-devel #安装httpd依赖
wget https://mirror.bit.edu.cn/apache//httpd/httpd-2.4.43.tar.gz #下载httpd包
tar -zxvf httpd-2.4.43.tar.gz -C /usr/src #解压httpd包
cd /usr/src/httpd-2.4.43 #切换目录到httpd包所在
vim support/ab.c #修改ab的源代码
修改第282行:#define MAX_CONCURRENCY 100000 #后面数字改成自己想要的最大并发数,默认为20000
./configure --prefix=/usr/local/httpd #编译
make && make install #安装
ln -s /usr/local/httpd/bin/* /usr/bin #做软链接
ulimit -n 65535 #修改同时最大打开的文件数,此为临时性的
或者直接yum -y install httpd-tools 但是不能使用20000以上的并发数
2.请求
post请求示例:
ab -n 1 -c 1 -H 'Content-Type:application/json; charSet=UTF-8' -p 'Request3.txt' -T 'application/json' https://127.0.0.1/test | tee ab.txt
Request3.txt为请求参数,json串, tee ab.txt为生成报告
请求参数说明:
-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 attributes
are a colon separated username and password.
-P attribute Add Basic Proxy Authentication, the attributes
are 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而不是服务器的性能。
报告分析
This is ApacheBench, Version 2.3 <$Revision: 1879490 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking 127.0.0.1 (be patient)
Server Software:
Server Hostname: 127.0.0.1
Server Port: 443
SSL/TLS Protocol: TLSv1.2,ECDHE-RSA-AES128-GCM-SHA256,2048,128
TLS Server Name: 127.0.0.1
Document Path: /test
Document Length: 33 bytes HTTP响应数据的正文长度
Concurrency Level: 80 并发数
Time taken for tests: 232.272 seconds 所有这些请求处理完成所花费的时间
Complete requests: 100000 完成请求数
Failed requests: 0 失败请求数
Total transferred: 22300000 bytes 网络总传输量
Total body sent: 442100000 HTML内容传输量
HTML transferred: 3300000 bytes
Requests per second: 430.53 [#/sec] (mean) 吞吐量-每秒请求数
Time per request: 185.818 [ms] (mean) 服务器收到请求,响应页面要花费的时间
Time per request: 2.323 [ms] (mean, across all concurrent requests) 并发的每个请求平均消耗时间
Transfer rate: 93.76 [Kbytes/sec] received 平均每秒网络上的流量,可以帮助排除是否存在网络流量过大导致响应时间延长的问题
1858.76 kb/s sent
1952.52 kb/s total
Connection Times (ms)
min mean[+/-sd] median max
Connect: 5 10 10.9 9 252
Processing: 10 175 53.0 181 1884
Waiting: 9 175 53.0 181 1884
Total: 20 186 54.3 190 1896
Percentage of the requests served within a certain time (ms)
50% 190
66% 197
75% 201
80% 204
90% 213
95% 256
98% 279
99% 305
100% 1896 (longest request)