web bench是用来做服务器的压力测试的一个工具
1.下载 编译
http://home.tiscali.cz/cz210552/distfiles/webbench-1.5.tar.gz , 或者 http://pan.baidu.com/s/1kTMUzmn
我的开发环境是windows,webbench需要在linux环境下编译,我机器配置了cygwin,切换到解压的目录,直接运行make,执行之后,会报错“找不到对应的文件 rpc/tpyes.h”,我查看在 /usr/include/tirpc/rpc 目录下types.h 确实存在,在网上搜索相关的内容之后,
解决方案: 需要自Makefile文件中加上 CPPFLAGS=-I/usr/include/tirpc,之后再编译,我还遇到了找不到ctags的问题,重新安装了ctags,之后编译通过
2.使用
webbench -c 100 -t 30 url(对用需要测试的网址)
具体的参数的意义参考webbench的帮助
执行 webbench --help 具体的参数的意义
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.