LoadModule status_module modules/mod_status.so
<Location "/server-status">
SetHandler server-status
Require host example.com
</Location>
bash
apachetop -f /var/log/apache2/access.log
bash
ab -n 1000 -c 100 http://example.com/
bash
wrk -t12 -c400 -d30s http://example.com
bash
wget https://raw.githubusercontent.com/richardforth/apache2buddy/master/apache2buddy.pl
perl apache2buddy.pl
Prefork MPM(适用于PHP等非线程安全环境):
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxRequestWorkers 150
MaxConnectionsPerChild 10000
Worker MPM(适用于高并发静态内容):
StartServers 2
MinSpareThreads 25
MaxSpareThreads 75
ThreadLimit 64
ThreadsPerChild 25
MaxRequestWorkers 150
MaxConnectionsPerChild 0
KeepAlive:长连接配置
KeepAlive On
KeepAliveTimeout 5
MaxKeepAliveRequests 100
Timeout:请求超时设置
Timeout 30
通过结合这些工具和方法,您可以全面了解Apache服务器的性能状况,并进行有针对性的优化。