Web Hosting Talk







View Full Version : error log


raylin
06-24-2001, 08:36 PM
Anyone know where can I find the error log for cgi script?

Thanks,

Ray

cgisupp
06-24-2001, 08:54 PM
Not sure which RAQ you are on but on a RAQ3
is is at /home/log/httpd/error

so to read the bottom 100 lines try

tail -n 100 /home/log/httpd/error | more

qslack
06-24-2001, 09:30 PM
Another handy feature of tail is the -f option, which tells it to "follow" the file. Whenever any data is written to it, tail will show the additions in real-time.

I use it to see who accesses my site (with access_log).

tail -f /home/log/httpd/error
(if that's the correct path to your error log)

raylin
06-25-2001, 12:35 AM
cgisupp and qslack,

My server is RaQ4i and I find it there,too.

Thanks a lot,

Ray