• windows环境压力测试工具Apache ab安装及使用(apache benchmark)


    1.首先下载并解压安装包,下载地址Apache Haus Downloads

    2.解压到C盘,并进入bin目录,复制路径,并配置环境变量,保存后就OK了

     3.可以开始使用了,测试一下吧

    ab -n 2000 -c 10 -k http://localhost:6868/dataScreenLibrary/findPublicShareByPk?id=4

    常用参数详解:

    1. ab [可选的参数选项] 需要进行压力测试的url
    2. 此外,我们再根据上面的用法介绍界面来详细了解每个参数选项的作用。
    3. -n
    4. 即requests,用于指定压力测试总共的执行次数。
    5. -c
    6. 即concurrency,用于指定压力测试的并发数。
    7. -t
    8. 即timelimit,等待响应的最大时间(单位:秒)。
    9. -b
    10. 即windowsize,TCP发送/接收的缓冲大小(单位:字节)。
    11. -p
    12. 即postfile,发送POST请求时需要上传的文件,此外还必须设置-T参数。
    13. -u
    14. 即putfile,发送PUT请求时需要上传的文件,此外还必须设置-T参数。
    15. -T
    16. 即content-type,用于设置Content-Type请求头信息,例如:application/x-www-form-urlencoded,默认值为text/plain。
    17. -v
    18. 即verbosity,指定打印帮助信息的冗余级别。
    19. -w
    20. 以HTML表格形式打印结果。
    21. -i
    22. 使用HEAD请求代替GET请求。
    23. -x
    24. 插入字符串作为table标签的属性。
    25. -y
    26. 插入字符串作为tr标签的属性。
    27. -z
    28. 插入字符串作为td标签的属性。
    29. -C
    30. 添加cookie信息,例如:"Apache=1234"(可以重复该参数选项以添加多个)。
    31. -H
    32. 添加任意的请求头,例如:"Accept-Encoding: gzip",请求头将会添加在现有的多个请求头之后(可以重复该参数选项以添加多个)。
    33. -A
    34. 添加一个基本的网络认证信息,用户名和密码之间用英文冒号隔开。
    35. -P
    36. 添加一个基本的代理认证信息,用户名和密码之间用英文冒号隔开。
    37. -X
    38. 指定使用的代理服务器和端口号,例如:"126.10.10.3:88"
    39. -V
    40. 打印版本号并退出。
    41. -k
    42. 使用HTTP的KeepAlive特性。
    43. -k
    44. 使用HTTP的KeepAlive特性。
    45. -d
    46. 不显示百分比。
    47. -S
    48. 不显示预估和警告信息。
    49. -g
    50. 输出结果信息到gnuplot格式的文件中。
    51. -e
    52. 输出结果信息到CSV格式的文件中。
    53. -r
    54. 指定接收到错误信息时不退出程序。
    55. -h
    56. 显示用法信息,其实就是ab -help

    压力测试结果
    C:\Users\lvxy>ab -n 2000 -c 10 -k http://localhost:6868/dataScreenLibrary/findPublicShareByPk?id=4
    This is ApacheBench, Version 2.3 <$Revision: 1901567 $>
    Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
    Licensed to The Apache Software Foundation, http://www.apache.org/

    Benchmarking localhost (be patient)
    Completed 200 requests
    Completed 400 requests
    Completed 600 requests
    Completed 800 requests
    Completed 1000 requests
    Completed 1200 requests
    Completed 1400 requests
    Completed 1600 requests
    Completed 1800 requests
    Completed 2000 requests
    Finished 2000 requests


    Server Software:
    Server Hostname:        localhost
    Server Port:            6868

    Document Path:          /dataScreenLibrary/findPublicShareByPk?id=4
    Document Length:        27810 bytes

    Concurrency Level:      10
    Time taken for tests:   10.433 seconds
    Complete requests:      2000
    Failed requests:        0
    Keep-Alive requests:    2000
    Total transferred:      56142000 bytes
    HTML transferred:       55620000 bytes
    Requests per second:    191.70 [#/sec] (mean)
    Time per request:       52.165 [ms] (mean)
    Time per request:       5.217 [ms] (mean, across all concurrent requests)
    Transfer rate:          5255.04 [Kbytes/sec] received

    Connection Times (ms)
                  min  mean[+/-sd] median   max
    Connect:        0    0   0.0      0       1
    Processing:    15   52  20.5     50     287
    Waiting:       13   52  20.5     50     287
    Total:         15   52  20.5     50     287

    Percentage of the requests served within a certain time (ms)
      50%     50
      66%     51
      75%     52
      80%     52
      90%     54
      95%     56
      98%     59
      99%    212
     100%    287 (longest request)

  • 相关阅读:
    (三)简单使用Spring
    vivo 商品中台的可视化微前端实践
    工业互联网数字化中台解决方案
    Go 语言是如何实现切片扩容的?【slice】
    [Bug]Ubuntu下使用TexStudio存在的一些问题
    拓展虚拟世界边界,云手机可以做到吗
    JAVA基础实现对日期的常用操作
    记一次内部分享——瞎扯淡
    频繁调一个http请求和多个不同http请求性能一样吗
    带圆角的虚线边框?CSS 不在话下
  • 原文地址:https://blog.csdn.net/ziwoods/article/details/126126695