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 !!!

Leave a Reply