- 浏览: 66105 次
- 性别:
- 来自: 江苏
文章分类
最新评论
-
donghustone:
楼主好强大!!
resin2.1.17 官方下载地址 -
MultiArrow:
这么说的话好像就只有CentOS没有一个比较强的企业在使用。。 ...
诸多linux,但选一个做服务器
参数:
-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 设置 属性的字符串. 缺陷程序中有各种静态声明的固定长度的缓冲区。另外,对命令行参数、服务器的响应头和其他外部输入的解析也很简单,这可能会有不良后果。它没有完整地实现HTTP/1.x; 仅接受某些'预想'的响应格式。 strstr(3)的频繁使用可能会带来性能问题,即, 你可能是在测试ab而不是服务器的性能。
参数很多,一般我们用 -c 和 -n 参数就可以了. 例如:
./ab -c 1000 -n 1000 http://127.0.0.1/index.php
这个表示同时处理1000个请求并运行1000次index.php文件.
#/usr/local/xiaobai/apache2054/bin/ab -c 1000 -n 1000 http://127.0.0.1/index.html.zh-cn.gb2312
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.0.54
//平台apache 版本2.0.54
Server Hostname: 127.0.0.1
//服务器主机名
Server Port: 80
//服务器端口
Document Path: /index.html.zh-cn.gb2312
//测试的页面文档
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时间乘以并发请求数
发表评论
-
crontab 中使用环境变量
2012-11-12 09:40 1945环境:(产品,平台,机型,软件版本,等)AIX5L 问 ... -
mysql 里常用的函数
2010-08-30 11:46 863以前用oracle的nvl等函数很方便,mysql的不熟悉,用 ... -
MySQL与事务 MyISAM 和InnoDB [转]
2010-08-27 10:03 1237InnoDB和MyISAM是许多人在 ... -
dll already loaded in another classloader 错误解决
2010-08-24 13:40 2484遇到此问题,从网上找了下答案,记录之 是由于web重启 ... -
使用javamail发邮件报错
2010-08-07 17:12 1950使用myeclipse 开发 javaee1. ... -
【转】集群中几种session同步解决方案的比较
2010-07-29 22:43 1028集群中几种session同步解决方案的比较 ... -
apache workers.properties
2010-06-26 14:43 1217[转]http://hi.baidu.com/youdianw ... -
apache2.2 tomcat6 jk 负载均衡, 做backup server
2010-06-26 14:32 17031.下载 在http://tomcat.apache.org/ ... -
xp远程连接win2008
2009-12-07 22:16 980xp远程桌面连接不支持nla,网络及身份验证,在注册表里修改如 ... -
[转]三大WEB服务器(Apache ,Lighttpd,Nginx)对比分析
2010-04-23 01:07 680一.软件介绍(apache lig ... -
resin2.1.17 官方下载地址
2010-04-23 02:34 2457官网上已经没有相关下载链接,但是文件还在,趁早下吧,用3以上版 ... -
raid 名词解释
2010-05-26 17:06 956RAID级别为不同冗余类型在逻辑驱动器上的应用。 它可以提高逻 ... -
诸多linux,但选一个做服务器
2010-05-28 00:01 1271RHEL对于我们来说最大的 ... -
win2008server 安全配置
2010-06-06 20:28 990【转】系统安装 分区: 服务器的硬盘是320G,分成了4 ... -
myeclips resin 出现 a full jdk must be specified 错误
2010-06-13 19:02 955到window/Preferences/java->in ... -
apache resin ngnix 性能比较
2010-06-15 01:56 1285静态页面测试,静态页面包括css,js,img ab -c 2 ... -
DNS 服务器 清除缓存
2010-06-22 11:05 1363DNS 缓存不及时清理会导致解析错误,网页打不开。server ...
相关推荐
Apache ab下载,冲apache安装目录拿出来的。也不用为了使用ab而安装Apache。ab.exe
使用Apache ab工具进行压力测试的基本步骤: 1. 安装Apache HTTP服务器,如提供的`Apache24`文件,可能包含一个预编译的Apache版本。 2. 找到`ab`工具,通常位于Apache安装目录的`bin`子目录下。 3. 在命令行中运行...
对于初学者来说,Apache AB是一个很好的起点,因为它轻量级、易于理解和使用。然而,对于长期的性能监控和复杂的测试需求,可能需要依赖更专业的工具和解决方案。在进行压力测试时,记得要合理设置参数,避免对生产...
ab专门用于HTTP Server的benchmark testing,可以同时模拟多个并发请求,使用这个轻巧的工具我们可以对服务器进行负载测试。 今天在公司也用它作一些测试,现在整理了下它的一些东西分享下。 首先我们要得到Apache...
Apache AB测试程序是一款轻量级、命令行工具,主要用于评估Web服务器的性能。它由Apache HTTP服务器项目开发,是性能基准测试工具集的一部分。AB,全称ApacheBench,能够模拟多个并发用户对Web服务器进行请求,从而...
以上就是关于“Apache压力测试之ab”的详细讲解,希望对你理解和使用ab工具进行压力测试有所帮助。如果你对此有更多疑问,或者想交流相关经验,可以加入指定的QQ群或通过提供的联系方式与作者取得联系。
测试工具 ab apache 性能测试 web开发 网站开发
apache benchmark 独立文件 ab.exe 可以直接使用 Version 2.3。一般用户压力测试用。参数如下 .\ab.exe --help Options are: -n requests Number of requests to perform -c concurrency Number of multiple ...
NULL 博文链接:https://2279972332.iteye.com/blog/1989163
5. **安全性**:确保Apache服务器的安全性非常重要,这包括使用最新的安全补丁,限制不必要的网络访问,以及正确配置SSL/TLS证书以保护数据传输。 6. **性能优化**:利用ab工具进行性能测试后,可以针对结果调整...
【Apache网站压力测试工具ab使用教程】 Apache HTTP服务器自带了一个名为`ab`(ApacheBench)的简单压力测试工具,用于评估Web服务器的性能。它能够模拟多个并发用户请求,以此来测试服务器在高负载下的响应时间和...
apache ab使用详解,md epoll为什么使用红黑树不用哈希表. linux进程.md redis lua 原子性,md struct和class的区别.md vector和list的区别.md 侵入式链表.md 函数重载.md 协程.md 检查大小端.md 死锁.md 死锁产生.md ...
如果你选择手动编译安装,你需要下载 Apache 源码,解压,配置,编译,最后将 `ab` 工具复制到 `/usr/sbin` 目录以便全局使用。 使用 AB 进行性能测试时,基本的命令格式是 `ab -n <请求次数> -c <并发数量> <URL>`...
使用AB工具进行测试的基本命令格式如下: ```bash ab -n <请求次数> -c <并发用户数> ``` - `-n` 参数指定了总的HTTP请求次数,即要执行多少次请求。 - `-c` 参数定义了同时并发的用户数,也就是多线程或者连接数...
在使用ab进行测试时,通常会指定几个重要的参数。例如,`-n`参数定义了要执行的总请求数,而`-c`参数则指定了并发用户(或连接)的数量。在提供的示例中,`-n 10000`意味着将发送10000次请求,`-c 100`表示同时有100...
Apache的ab(ApacheBench)是一款简单而强大的压力测试工具,专用于接口和并发测试。在Web服务性能优化和系统负载能力评估中,ab扮演着关键角色。它可以帮助开发者和运维人员了解服务器在高并发情况下的表现,以及...