【发布时间】:2023-04-03 23:28:01
【问题描述】:
我需要在 linux 服务器上对 apache 网站进行基准测试。 我已经配置了 Siege,它工作正常..
当我在本地主机上运行 siege 时,我得到事务率,即 625.00 trans/sec
command is : siege -b -c 200 -r 10 http://localhost
当我在不同站点上运行相同的围攻时,我会得到不同的交易率,即 99.21 trans/sec
siege -b -c 200 -r 10 http://apache.org
我想知道当我为不同的站点运行时,我的 Apache 服务器是如何被用于围攻的。 请澄清这一点。
【问题讨论】:
-
当您对外部站点运行 siege 时,您的本地 apache 服务器没有被使用。
-
好的,Siege 就像一个客户端,将针对目标 URL Web 服务器测量性能。
标签: webserver benchmarking siege