标签: apache
我想在推送文件之前检查服务器负载。有没有办法检查服务器是否有能力处理并发用户。我们还检查了终端方面的ab,但需要检查没有文件。
答案 0 :(得分:1)
您可以使用/server-status处理程序(mod_status)来检查。
/server-status
配置它非常容易和直接:
<Location "/server-status"> SetHandler server-status Require host example.com </Location>