WEBserver 性能测试

本地实验(Centos7),WEBserver性能测试;

软件包地址

wget http://download.joedog.org/siege/siege-4.0.2.tar.gz
tar -xf siege-4.0.2.tar.gz
cd siege-4.0.2
./configure
make && make install
siege -V
siege -c 10 -r 2 http://download.joedog.org/

siege -c 10 -r 2 http://www.baidu.com

性能概况图;

命令说明;

siege -c 10 -r 2 http://www.baidu.com

参数说明: -c 是并发量并发数为10,  -r 是重复次数 重复2次

siege -h          --- 帮助详情

原文地址:https://www.cnblogs.com/alex-note/p/7126369.html