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. vim – search & replace was searching what is the escape sequence for tab &...
  3. Apache and PHP Setup on Mac OS X This special tutorial is for a friend who would like...
  4. convert epoch using date command date -d ‘<Unix epoch> <epoch date> sec’ e.g. date -d...
  5. Troubleshoot Firefox – safe mode   Today, visited a website with flash and some how...
  6. FreeBSD CVSUP Assertion Error I have been having problems running port cvsup on one...
  7. PgPool – PostgreSQL Connection Cache Playing PgPool on a heavy load database server is fun....
  8. PCRE Error on PHP 5.2.x Recent upgrade to PHP 5.2.8 and PHP 5.2.9 have given...
  9. Set time & date automatically in KDE For NTP use in KDE : - apt-get install ntpdate...

Leave a Reply