压力测试工具apache-ab讲解

发表于:2014-1-21 11:29

字体: | 上一篇 | 下一篇 | 我要投稿

 作者:fuyangclj    来源:51Testing软件测试网采编

分享:
  参数很多,一般我们用 -c 和 -n 参数就可以了. 例如:
  打开cmd,输入 以下代码。
  cd C:\Apache2.2\bin
  ab -n 1000 -c 100 http://zf.guqin.com/index/index
  这个表示同时处理100个请求并运行1000次index.php文件。以下是打印出来的内容。
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 127.0.0.1 (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
Finished 1000 requests
Server Software:        Apache/2.2.8
//平台apache 版本2.2.8
Server Hostname:        zf.guqin.com
//服务器主机名
Server Port:            80
//服务器端口
Document Path:          /index.php
//测试的页面文档
Document Length:        1018 bytes
//文档大小
Concurrency Level:      1000
//并发数
Time taken for tests:   8.188731 seconds
//整个测试持续的时间
Complete requests:      1000
//完成的请求数量
Failed requests:        0
//失败的请求数量
Write errors:           0
Total transferred:      1361581 bytes
//整个场景中的网络传输量
HTML transferred:       1055666 bytes
//整个场景中的HTML内容传输量
Requests per second:    122.12 [#/sec] (mean)
//大家最关心的指标之一,相当于 LR中的每秒事务数,后面括号中的 mean表示这是一个平均值
Time per request:       8188.731 [ms] (mean)
//大家最关心的指标之二,相当于 LR中的平均事务响应时间,后面括号中的 mean表示这是一个平均值
Time per request:       8.189 [ms] (mean, across all concurrent requests)
//每个请求实际运行时间的平均值
Transfer rate:          162.30 [Kbytes/sec] received
//平均每秒网络上的流量,可以帮助排除是否存在网络流量过大导致响应时间延长的问题
Connection Times (ms)
min mean[+/-sd] median   max
Connect:        4 646 1078.7     89    3291
Processing:   165 992 493.1    938    4712
Waiting:      118 934 480.6    882    4554
Total:        813 1638 1338.9   1093    7785
//网络上消耗的时间的分解,各项数据的具体算法还不是很清楚
Percentage of the requests served within a certain time (ms)
50%   1093
66%   1247
75%   1373
80%   1493
90%   4061
95%   4398
98%   5608
99%   7368
100%   7785 (longest request)
  //整个场景中所有请求的响应情况。在场景中每个请求都有一个响应时间,其中50%的用户响应时间小于1093 毫秒,60% 的用户响应时间小于1247 毫秒,最大的响应时间小于7785 毫秒
  由于对于并发请求,cpu实际上并不是同时处理的,而是按照每个请求获得的时间片逐个轮转处理的,所以基本上第一个Time per request时间约等于第二个Time per request时间乘以并发请求数。
  window下面测试 p参数的使用
  ab.exe -n 100 -c 10  -p "D:/post.txt" -T "application/x-www-form-urlencoded" "http://localhost/test/index.php"
  post.txt文件内容
  myname=xiaoming&sex=1&age=10
  index.php内容
  <?php
  file_put_contents('request.txt',implode('####',$_REQUEST));
  测试结果
  request.txt文件内容  提示 request.txt和index.php同目录
  xiaoming####1####10
  window下面测试 A参数的使用
  ab.exe -A myname:mypassword -n 100 -c 10   "http://localhost/test/index.php"
  PHP认证学习地址
  http://www.php100.com/manual/php/features.http-auth.html
  index.php内容
<?php
if (!isset($_SERVER['PHP_AUTH_USER'])) {
header('WWW-Authenticate: Basic realm="My Realm"');
header('HTTP/1.0 401 Unauthorized');
echo 'Text to send if user hits Cancel button';
exit;
} else {
$str = "<p>Hello {$_SERVER['PHP_AUTH_USER']}.</p>";
$str .="<p>You entered {$_SERVER['PHP_AUTH_PW']} as your password.</p>";
file_put_contents('request.txt',$str);
}
  request.txt测试结果 提示和index.php一个文件
  <p>Hello myname.</p><p>You entered mypassword as your password.</p>
22/2<12
《2023软件测试行业现状调查报告》独家发布~

关注51Testing

联系我们

快捷面板 站点地图 联系我们 广告服务 关于我们 站长统计 发展历程

法律顾问:上海兰迪律师事务所 项棋律师
版权所有 上海博为峰软件技术股份有限公司 Copyright©51testing.com 2003-2024
投诉及意见反馈:webmaster@51testing.com; 业务联系:service@51testing.com 021-64471599-8017

沪ICP备05003035号

沪公网安备 31010102002173号