Webbench的安装和使用
说明:使用环境Linux,以下用ubuntu1404环境做演示
下载
wget http://home.tiscali.cz/~cz210552/distfiles/webbench-1.5.tar.gz
解压
tar -zxvf ./webbench-1.5.tar.gz
安装编译环境
sudo apt-get install gcc ctags
编译
cd webbench-1.5/
make
sudo make install
make clean
使用
webbench [option]... URL
-f|--force Don't wait for reply from server.
-r|--reload Send reload request - Pragma: no-cache.
-t|--time Run benchmark for seconds. Default 30.
-p|--proxy Use proxy server for request.
-c|--clients Run 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.
这里time和clients比较重要,
time是benchmark持续多久
clients是指time时间内请求多少次。
比如我们测试自己网站首页, 启动200个client,持续30S:
webbench -c 200 -t 30 http://www.icehill.cn/
运行结果
Webbench - Simple Web Benchmark 1.5
Copyright (c) Radim Kolar 1997-2004, GPL Open Source Software.
Benchmarking: GET http://www.icehill.cn/
200 clients, running 30 sec.
Speed=50 pages/min, 116966 bytes/sec.
Requests: 25 susceed, 0 failed.
作者心情:昨夜西风凋碧树,独上高楼,望尽天涯路。
如无特殊说明,文章均为本站原创,转载请注明出处
- 转载请注明来源:性能测试工具webbench
- 本文永久链接地址:http://icehill.cn/post/single/info/201.html