http_load以并行复用的方式运行,用以测试web服务器的吞吐量与负载。
但是它不同于大多数压力测试工具,它可以以一个单一的进程运行,一般不会把客户机搞死。
还可以测试HTTPS类的网站请求。
网站地址http://acme.com/software/http_load/
wget http://acme.com/software/http_load/http_load-09Mar2016.tar.gztar -zxvf http_load-09Mar2016.tar.gz
cd http_load-09Mar2016
make && make install
使用
http_load -p 并发访问进程数 -s 访问时间 需要访问的URL文件
http_load -p30 -s 60 urllist.txt
##测试HTTPS类网站
#urllist.txt
https://jerryblog.cn/
https://jerryblog.cn/cdn.html
https://jerryblog.cn/jblog/index/cdn/cid/2.html
https://jerryblog.cn/jblog/index/cdn/cid/3.html
https://jerryblog.cn/jblog/tool/doc.html
https://jerryblog.cn/b@MNgm6f918eY6f918e5.html
http_load --help
usage: http_load [-checksum] [-throttle] [-proxy host:port] [-verbose] [-timeout secs] [-sip sip_file] -parallel N | -rate N [-jitter]
-fetches N | -seconds N
url_file
One start specifier, either -parallel or -rate, is required.
One end specifier, either -fetches or -seconds, is required.
参数其实可以自由组合,参数之间的选择并没有什么限制。
比如你写成http_load -parallel 5 -seconds 300 urllist.txt也是可以的。
我们把参数给大家简单说明一下。
-parallel 简写-p :含义是并发的用户进程数。
-fetches 简写-f :含义是总计的访问次数
-rate 简写-p :含义是每秒的访问频率
-seconds 简写-s :含义是总计的访问时间