Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
First of all there are 8 local facilities (local0 to local7) in syslog.conf.
Second in apache ErrorLog directive you need a colon ":" and not the pipe symbol "|" to define the syslog facility. And you dont need a "*" at the end
So use:
Thanks for your reply,and i have tried as you have pointed out but still I couldn't find any error logs getting updated in the respective log files.When I point out directly to the error files at httpd.conf,it working perfectly,while using syslog it is not working.
Yes i have found the mistake, just a typo.....But still there is another problem ,I've two virtual host(Please see at the top for the httpd config file),I'm getting error logs onlt for first virtual host,that is rubby.gai.net and not for tubby.gai.net
Finalised the problem:
I found that only for the entry where there is local0 in syslog is taking.Whereas the local1 which is pointed for another virtual host is not taking.let me show,
#vim /etc/syslog.conf
# Log all kernel messages to the console.
# Logging much else clutters up the screen.
#kern.* /dev/console
# Log anything (except mail) of level info or higher.
# Don't log private authentication messages!
*.info;mail.none;authpriv.none;cron.none /var/log/messages
# The authpriv file has restricted access.
authpriv.* /var/log/secure
# Log all the mail messages in one place.
mail.* -/var/log/maillog
# Log cron stuff
cron.* /var/log/cron
# Everybody gets emergency messages
*.emerg *
# Save news errors of level crit and higher in a special file.
uucp,news.crit /var/log/spooler
# Save boot messages also to boot.log
local7.* /var/log/boot.log
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.