wget http://www.sfr-fresh.com/unix/privat/webbench-1.5.tar.gz tar zxvf webbench-1.5.tar.gz cd webbench-1.5 mkdir -m 644 -p /usr/local/man/man1 sudo make && make install
使用
1
webbench -c 并发数 -t 运行测试时间 URL
例如
1
webbench -c 1000 -t 60 www.baidu.com
表示模拟1000个用户在60s内不间断的访问百度。
其他
可以设置下系统的最大端口数,查看open files (-n) 这一行
1
ulimit -a
比如说修改成10000
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
ulimit -n 10000 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.