生成服务器统计报告和实时监控的最佳工具是什么? 感觉像Webalizer有点落后。
谢谢!
为什么不使用Apache提供的模块,它有很多的信息(被访问的页面,每个进程使用的内存等),非常有用。
确保在你的apache模块中加载了mod_status.so然后在httpd.conf中查找/添加上面的代码:
# Uncomment the following lines to enable mod_status support: # ExtendedStatus On <Location /server-status> SetHandler server-status Order Deny,Allow Deny from all Allow from YOUR_IP_HERE </Location>
要访问它,请使用http:// YourServerIp / server-status