当前位置: 代码迷 >> 综合 >> 压力测试工具-WebBench
  详细解决方案

压力测试工具-WebBench

热度:21   发布时间:2024-01-21 04:07:39.0

压力测试工具-WebBench

sf2gis@163.com

2015年12月4日

 

1  目标:测试服务的并发能力,每秒响应的请求数和传输的数据量。

2 原理:模拟HTTP请求。

3 流程:安装WebBench,配置测试参数,测试。

参考:http://www.cnblogs.com/littlehb/archive/2013/04/09/3009313.html

http://baike.baidu.com/view/5482573.htm http://zyan.cc/post/288/

3.1 安装WebBench:

3.1.1下载、安装依赖

下载:http://home.tiscali.cz/~cz210552/distfiles/webbench-1.5.tar.gz

解压,如果直接安装会有ctags错误和/usr/local/man/man1缺失问题。

安装ctags:sudo yuminstall ctags

创建man文件夹:sudo mkdir/usr/local/man/man1

3.1.2安装

make

make install

3.1.3测试安装:webbench -V

3.2 压力测试:测评百度首页

webbench -c 2 -t 5http://www.baidu.com/index.html

参考:http://www.cnblogs.com/lost-1987/articles/3368115.html

3.3 结果分析:可以看到每分钟的页面数和传输速度。请求成功数等。

传输速度:speed=每分钟的页面数,传输速度。

请求结果:request:成功数,失败数。

参考:http://my.oschina.net/u/1433006/blog/220555?p=1

4 方法:

4.1 参数配置

webbench[option]... URL

  -f|--force               Don't wait for reply fromserver.

  -r|--reload              Send reload request - Pragma:no-cache.

  -t|--time <sec>          Run benchmark for <sec>seconds. Default 30.

  -p|--proxy <server:port> Use proxyserver for request.

  -c|--clients <n>         Run <n> HTTP clients at once.Default one.

  -9|--http09              Use HTTP/0.9 style requests.

  -1|--http10              Use HTTP/1.0 protocol.

  -2|--http11              Use HTTP/1.1 protocol.

  --get                    Use GET request method.

  --head                   Use HEAD request method.

  --options                Use OPTIONS request method.

  --trace                  Use TRACE request method.

  -?|-h|--help             This information.

  -V|--version             Display program versio

4.2 测试方法

从并发数小到大测试,查看响应的速度。

5 示例: