Webbench是有名的网站压力测试工具,它是由 Lionbridge公司(http://www.lionbridge.com)开发。

    Webbech能测试处在相同硬件上,不同服务的性能以及不同硬件上同一个服务的运行状况。webBech的标准测试可以向我们展示服务器的 两项内容:每秒钟相应请求数和每秒钟传输数据量。webbench不但能具有便准静态页面的测试能力,还能对动态页面(ASP,PHP,JAVA,CGI)进 行测试的能力。还有就是他支持对含有SSL的安全网站例如电子商务网站进行静态或动态的性能测试。  

    Webbech最多可以模拟3万个并发连接去测试网站的负载能力,感觉要比Apache自带的ab压力测试工具好,安装使用也方便。

1、实验环境:VMware 10 、RedHat5.6

2、下载webbench软件包

3、编译安装

yum install ctags -y
tar -zxf webbench-1.5.tar.gz -C /usr/src/
cd /usr/src/webbench-1.5/
mkdir -p /usr/local/man/man1
make && make install

4、webbench的使用

# webbench -c 100  -t 5 http://192.168.80.130/index.html


[root@web1 webbench-1.5]# webbench -h
webbench [option]... URL
  -f|--force               Don't wait for reply from server.
  -r|--reload              Send reload request - Pragma: no-cache.
  -t|--time <sec>          Run benchmark for <sec> seconds. Default 30.
  -p|--proxy <server:port> Use proxy server 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 version.

5、测试结果

[root@web1 webbench-1.5]# webbench -c 100  -t 5 http://192.168.80.130/index.html
Webbench - Simple Web Benchmark 1.5
Copyright (c) Radim Kolar 1997-2004, GPL Open Source Software.

Benchmarking: GET http://192.168.80.130/index.html
100 clients, running 5 sec.

Speed=377292 pages/min, 1685452 bytes/sec.
Requests: 31441 susceed, 0 failed.