http load testing and benchmarking utility

install siege on ubuntu 14.04.1 amd64:
[email protected]:~#apt-get install make
[email protected]:~#apt-get install gcc
[email protected]:~#wget http://download.joedog.org/siege/siege-4.0.2.tar.gz
[email protected]:~#tar -zxf siege-4.0.2.tar.gz
[email protected]:~#cd siege-4.0.2
[email protected]:~#./configure
[email protected]:~#make
[email protected]:~#make install

命令使用方法:
[email protected]:~#siege -c 200 -r 20 http://www.baidu.com

以上命令参数详解:-c 200 表示并发200个用户 -r 20 表示重复循环20次

以上是基本命令,假如说你还想使你的攻击力加强请请看下面的参数详解:
-C,或–config 在屏幕上打印显示出当前的配置,配置是包括在他的配置文件$HOME/.siegerc中,可以编辑里面的参数,这样每次siege 都会按照它运行.
-v 运行时能看到详细的运行信息
-c n,或–concurrent=n 模拟有n个用户在同时访问,n不要设得太大,因为越大,siege 消耗本地机器的资源越多
-i,–internet 随机访问urls.txt中的url列表项,以此模拟真实的访问情况(随机性),当urls.txt存在是有效
-d n,–delay=n hit每个url之间的延迟,在0-n之间
-r n,–reps=n 重复运行测试n次,不能与 -t同时存在
-t n,–time=n 持续运行siege ‘n’秒(如10S),分钟(10M),小时(10H)
-l 运行结束,将统计数据保存到日志文件中siege .log,一般位于/usr/local/var/siege .log中,也可在.siegerc中自定义
-R SIEGERC,–rc=SIEGERC 指定用特定的siege 配置文件来运行,默认的为$HOME/.siegerc
-f FILE, –file=FILE 指定用特定的urls文件运行siege ,默认为urls.txt,位于siege 安装目录下的etc/urls.txt
-u URL,–url=URL 测试指定的一个URL,对它进行”siege “,此选项会忽略有关urls文件的设定
url.txt文件:是很多行待测试URL的列表以换行符断开,格式为:
[protocol://]www.itkylin.com[:port][path/to/file]

用法举例:
[email protected]:~#siege -c 300 -r 100 -f url.txt
说明:-c是并发量,-r是重复次数。url.txt就是一个文本文件,每行都是一个url,它会从里面随机访问的。