ab 的全称是ApacheBench,是 Apache 附带的WEB压力测试的一个小工具,专门用于 HTTP Server 的benchmark testing,可以同时模拟多个并发请求。
命令:ab -n 10 -c 10 http://www.baidu.com/
含义:向www.baidu.com发送10个请求(-n 10) ,并每次并发10个请求(-c 10)
下面的是 ab 输出的测试报告
C:\Java\Tools\ab>ab -n 10 -c 10 http://www.baidu.com/
This is ApacheBench, Version 2.0.41-dev <$Revision: 1.121.2.12 $> apache-2.0
Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Copyright (c) 1998-2002 The Apache Software Foundation, http://www.apache.org/
Benchmarking www.baidu.com (be patient).....done
Server Software: BWS/1.0
Server Hostname: www.baidu.com
Server Port: 80
Document Path: /
Document Length: 6759 bytes
Concurrency Level: 10
Time taken for tests: 0.406244 seconds
Complete requests: 10
Failed requests: 0
Write errors: 0
Total transferred: 71410 bytes
HTML transferred: 67590 bytes
/*这三个应该是我们最关心的参数,根据字面意思,很容易理解*/
Requests per second: 24.62 [#/sec] (mean)
Time per request: 406.244 [ms] (mean)
Time per request: 40.624 [ms] (mean, across all concurrent requests)
Transfer rate: 169.85 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 31 31 0.0 31 31
Processing: 62 152 78.7 156 281
Waiting: 31 143 89.8 156 281
Total: 93 183 78.7 187 312
/*每个响应时间占的百分比*/
Percentage of the requests served within a certain time (ms)
50% 187
66% 218
75% 249
80% 281
90% 312
95% 312
98% 312
99% 312
100% 312 (longest request)
-------------------------------------------------------------------------------
另附其他AB其他参数
格式.ab [options] [http://]hostname[: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的数据的文件.
-T content-type Content-type header for POSTing
//POST数据所使用的Content-type头信息。
-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. ‘Apache=1234. (repeatable)
//-C cookie-name=value 对请求附加一个Cookie:行。 其典型形式是name=value的一个参数对。此参数可以重复。
-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 设置 属性的字符串. 缺陷程序中有各种静态声明的固定长度的缓冲区。
参数很多,一般我们用 -c 和 -n 参数就可以了.
分享到:
相关推荐
【标题】:“Windows下Web压力测试工具AB” 在Windows操作系统中,进行Web应用程序的压力测试是一项重要的任务,确保网站或服务在高并发访问时能够稳定运行。Apache HTTP Server提供了一个名为ApacheBench(简称ab...
【Apache网站压力测试工具ab使用教程】 Apache HTTP服务器自带了一个名为`ab`(ApacheBench)的简单压力测试工具,用于评估Web服务器的性能。它能够模拟多个并发用户请求,以此来测试服务器在高负载下的响应时间和...
Apache JMeter是一款强大的开源压力测试工具,主要用于评估和优化服务器、网络或对象的性能。它由Apache Software Foundation提供,是IT行业中广泛使用的测试框架,特别适用于API和Web应用的压力和负载测试。JMeter...
Apache Bench(ab)是Apache HTTP服务器自带的一个命令行工具,用于进行HTTP服务器的压力测试和性能评估。这个工具可以帮助我们了解服务器在高并发情况下的处理能力,优化服务器配置,以及对比不同服务器软件或不同...
ab压力测试工具是Apache自带的一个功能强大且易用的压力测试工具,当安装完Apache时,就可以在bin下面找到ab。下面是对ab压力测试分析的详细说明: 1. ab命令参数解释 在使用ab工具时,需要指定以下参数: * -n:...
5. **IIS自带的Web Performance and Load Testing**:Visual Studio Ultimate版本附带的功能,可以创建和执行IIS的压力测试。 进行IIS压力测试时,通常会经历以下步骤: 1. **测试计划**:确定测试目标,如并发用户...
综上所述,Apache JMeter不仅是一款功能全面的性能测试工具,还具备高度的可定制性和扩展性,能够满足不同场景下的测试需求。无论是初学者还是高级用户,都能从其丰富的特性和灵活的配置中获益。
- **ab (Apache Bench)**:这是 Apache 服务器自带的简单压力测试工具,主要用于测试每秒钟处理的请求数。尽管功能较为基础,但对于静态内容的压力测试依然有用。 - **tcpcopy**:tcpcopy 是一个能够在生产环境中...
3. 性能评估:通过大量并发请求,测试工具可评估WebService在高负载下的响应时间和吞吐量,优化服务性能。 4. 兼容性测试:检查WebService与不同平台、编程语言和标准的兼容性。 二、常见WebService测试工具及特性 ...
总的来说,Apache JMeter是一个强大且灵活的性能测试工具,适用于多种场景,无论是Web应用、数据库还是其他类型的服务器,都可以通过JMeter进行性能评估和压力测试,确保系统的稳定性和性能。学习和掌握JMeter的使用...
AB压力测试,全称为Apache Bench,是Apache HTTP服务器自带的一款轻量级的压力测试工具。它的主要功能是模拟多个并发用户对指定的URL进行访问,以此来评估服务器在高并发情况下的性能表现。无论是Apache服务器,还是...
- **测试工具选择**:熟练掌握LoadRunner、Apache Bench等性能测试工具,具备一定的编程能力,熟悉C/C++、Java或.NET编程语言。 - **自动化测试流程**:了解并掌握QALoad、BenchmarkFactory、WebStress等成熟并发...
它基于Apache HTTP服务器自带的基准测试工具ab(ApacheBench),并扩展了其功能,能够帮助用户更直观地理解和分析服务器的性能表现。这款软件的独特之处在于它引入了gnuplot这个图形绘制工具,将测试结果以PNG图像的...
对于Apache服务器,MPM(Multi-Processing Module)决定了其处理并发请求的方式,包括预处理进程的Perchild模式、工作线程的Worker模式以及Windows下的WinNT模式。根据服务器负载,适当调整Apache的最大并发数,如在...