压力测试工具apache-ab讲解
作者:网络转载 发布时间:[ 2014/1/21 14:20:32 ] 推荐标签:压力测试 测试工具
参数很多,一般我们用 -c 和 -n 参数可以了. 例如:
打开cmd,输入 以下代码。
cd C:Apache2.2in
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
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>
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11