Apache logs …

While troubleshooting apache webserver, it would be helpful to have an idea of what are the various status code for HTTP. e.g.

192.168.168.168 – - [09/Feb/2008:14:03:26 +0800] “POST /index.php/display/refresh HTTP/1.1″ 200 – “http://www.takizo.com/blog/…” …

the above log entry would mean the client (192.168.168.168) have connected and the page have been served.

if :

192.168.168.168 – - [09/Feb/2008:13:24:11 +0800] “GET / HTTP/1.1″ 500 – “-” …

would mean there is a error while getting the page. In my case, check mod_access’s allow & deny statements.

That’s all for now, Happy monitoring !!!

Related posts:

  1. Error in suphp.c on line Am experimenting suphp on several servers for security reason. During...
  2. PCRE Error on PHP 5.2.x Recent upgrade to PHP 5.2.8 and PHP 5.2.9 have given...
  3. Disable phpinfo() on Apache Web Server Information displays from phpinfo() may provide resourceful information to attacker,...
  4. Generate apache SSL Sign Key Quick Tips for Apache’s SSL generate new key openssl req...
  5. How To Fix php5-pcre Ignored Package in FreeBSD Ports I guess most of the FreeBSD users having problem to...
  6. vim – search & replace was searching what is the escape sequence for tab &...

Leave a Reply