I'm using Fedora 14 and httpd timeout a lot.
Is there a log or something that tell me how many connnection开发者_如何学运维s to httpd and mysqld every second/minutes...etc
I'm very new to linux, please help me :)
You can view the Access Log in httpd to see requests:
LogFormat "%h %l %u %t \"%r\" %>s %b" common
CustomLog logs/access_log common
May be different for your version: Access Log
Or if the established session is timing out too early, set KeepAlive
and KeepAliveTimeout
:
KeepAlive
KeepAliveTimeout
精彩评论