siege 高并发测试工具

安装siege

下载

http://download.joedog.org/siege/siege-4.0.4.tar.gz

解压

sudo tar -zvxf siege-4.0.4.tar.gz -C /usr/local

编译安装

sudo ./configure 
sudo make && sudo make install

使用

# siege -c 1000 -r 3 -f url.txt 
Transactions:                765 hits
Availability:             100.00 %
Elapsed time:              11.14 secs
Data transferred:           0.21 MB
Response time:              2.05 secs
Transaction rate:          68.67 trans/sec
Throughput:             0.02 MB/sec
Concurrency:              140.63
Successful transactions:         765
Failed transactions:               0
Longest transaction:           10.44
Shortest transaction:           0.07

修改配置

sudo vim ~/.siege/siege.conf 

猜你喜欢

转载自www.cnblogs.com/jiqing9006/p/10657129.html