天天看點

webbench壓力測試安裝及使用

    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      
# 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.      
[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.      

繼續閱讀