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.
cd /usr/local/src wget http://download.joedog.org/siege/siege-4.0.4.tar.gz tar -zxvf siege-4.0.4.tar.gz cd siege-4.0.4/ ./configure --prefix=/usr/local/siege make && make install #将命令加入全局 ln -s /usr/local/siege/bin/siege /usr/bin/siege