- In the
conf/httpd.conf
file, find the section for
mod_mpmstats.c
and change ReportInterval
to:
ReportInterval 30
- In the
conf/httpd.conf
file, find the CustomLog
directive for your access_log
. By default this is:
CustomLog logs/access_log common
The last part of that line, in this example "common" is the name of the
LogFormat to use. Find this LogFormat. By default, this may be:
LogFormat "%h %l %u %t \"%r\" %>s %b" common
Change this to, for example:
LogFormat "%h %l %u %t \"%r\" %>s %b %D \"%{WAS}e\" %X %I %O %^FB" common
- Archive and truncate existing
access.log
,
error.log
, and http_plugin.log
files.
- Save
httpd.conf
and restart the IHS servers (either
gracefully or fully).
- Reproduce the problem.
- Gather
access.log
error.log
http_plugin.log
httpd.conf
plugin-cfg.xml
- Review all logs for any errors, warnings, etc.
- Review the response times. Try to isolate the problem to particular
requests (duration or volume).
- Review mpmstats.
- Review incoming rate and distribution of requests (see Web
Servers).
- Review
http_plugin.log
:
- scanplugin.pl
can help find "interesting" Plugin requests (timeouts, bad status codes,
non-WAS delays)
Previous Section (Web Server Recipes) |
Next Section (Some Users Reporting Bad Performance) |
Back to Table of Contents