zoukankan      html  css  js  c++  java
  • ab压力测试使用说明

    ab是apache自带的压力测试工具,安装完apache之后在bin目录下存在,说明ab不支持https加密协议,如果测试https,需要试用同目录下的abs文件。

    ab/abs 命令参数:

    -n 总请求数量

    -c 每次请求的并发数

    例如:ab -n 1000 -c 100 http://baike.baidu.com/ziran,该命令为请求该url10次,每次并发请求100次。

    更多的ab参数可以通过执行ab命令获取帮助文档。

    返回结果说明:

    Server Software:        Apache/2.2.19    ##apache版本 
    Server Hostname:        vm1.jianfeng.com   ##请求的机子 
    Server Port:            80 ##请求端口

    Document Path:          /a.html 
    Document Length:        25 bytes  ##页面长度

    Concurrency Level:      100  ##并发数 
    Time taken for tests:   0.273 seconds  ##共使用了多少时间 
    Complete requests:      1000   ##请求数 
    Failed requests:        0   ##失败请求 
    Write errors:           0   
    Total transferred:      275000 bytes  ##总共传输字节数,包含http的头信息等 
    HTML transferred:       25000 bytes  ##html字节数,实际的页面传递字节数 
    Requests per second:    3661.60 [#/sec] (mean)  ##每秒多少请求,这个是非常重要的参数数值,服务器的吞吐量 
    Time per request:       27.310 [ms] (mean)  ##用户平均请求等待时间 
    Time per request:       0.273 [ms] (mean, across all concurrent requests)  ##服务器平均处理时间,也就是服务器吞吐量的倒数 
    Transfer rate:          983.34 [Kbytes/sec] received  ##每秒获取的数据长度

    Connection Times (ms) 
                  min  mean[+/-sd] median   max 
    Connect:        0    1   2.3      0      16 
    Processing:     6   25   3.2     25      32 
    Waiting:        5   24   3.2     25      32 
    Total:          6   25   4.0     25      48

    Percentage of the requests served within a certain time (ms) 
      50%     25  ## 50%的请求在25ms内返回 
      66%     26  ## 60%的请求在26ms内返回 
      75%     26 
      80%     26 
      90%     27 
      95%     31 
      98%     38 
      99%     43 
    100%     48 (longest request)

    题外话:由于ab工具的特性,也可以用作DDOS的攻击工具哦

  • 相关阅读:
    Resharper让我们的asp.net开发效率提高三分之一
    做linux运维工程师,必须要掌握以下几个工具
    NodeJs端口被占用的情况
    Angel工作室EasyUI通用权限管理框架正式发布
    如何采用easyui tree编写简单角色权限代码
    C# Session添加、删除封装类
    Windows8.1下安装NoSQL-- mongodb安装使用
    redhat6.4安装MySQL-server-5.5.28-1.linux2.6.x86_64.rpm
    linux下安装MySQL出错file /usr/share/mysql/charsets/latin2.xml from install of MySQL-......
    Windows8.1系统下让VS2012编译运行IIS Express 64位 调试器
  • 原文地址:https://www.cnblogs.com/feiyujinghong/p/6374347.html
Copyright © 2011-2022 走看看