Raymii.org
Quis custodiet ipsos custodes?Home | About | All pages | Cluster Status | RSS Feed | Gopher
Apache access/error log to syslog
Published: 15-12-2013 | Author: Remy van Elst | Text only version of this article
❗ This post is over eight years old. It may no longer be up to date. Opinions may have changed.
This snippet shows you how to redirect the Apache access log to syslog using the Customlog statement, and the Error log to syslog via the ErrorLog statement.
I'm developing a desktop monitoring app, Leaf Node Monitoring, open source, but paid. For Windows, Linux & Android, go check it out.
Consider sponsoring me on Github. It means the world to me if you show your appreciation and you'll help pay the server costs.
You can also sponsor me by getting a Digital Ocean VPS. With this referral link you'll get $100 credit for 60 days.
Using the double pipe prevents spawning a shell for every hit. Append the below line to a vhost to have everything logged to syslog.
CustomLog "||/usr/bin/logger -t apache -i -p local5.notice" combine
The error log can be appended to syslog using the following statement:
ErrorLog syslog:local6
- More info on the Errorlog: http://httpd.apache.org/docs/2.2/mod/core.html#errorlog
- More info on the Customlog module: http://httpd.apache.org/docs/2.2/mod/mod log config.html#customlog