centos7安装使用siege进行压力测试
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7安装使用siege进行压力测试相关的知识,希望对你有一定的参考价值。
- 下载:
wget http://download.joedog.org/siege/siege-4.0.4.tar.gz
- 安装:
tar -xzf siege-4.0.4.tar.gz cd siege-4.0.4/ ./configure make && make install
- 用法:
-c 200 指定并发数200 -r 5 指定测试的次数5(默认:分钟)+s指定秒数 -f url.txt 指定url的文件 -i internet系统,随机发送url -b 请求无需等待 delay=0 -t 5 持续测试5分钟 # -r和-t一般不同时使用
- 示例:
a. GET请求:siege -c 1000 -t 2s http://dollarphp.com/
b. POST请求:siege -c 1000 -t 2s "http://dollarphp.com/ POST name=lee&sex=male"
以上是关于centos7安装使用siege进行压力测试的主要内容,如果未能解决你的问题,请参考以下文章