LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This 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


Reply
  Search this Thread
Old 08-11-2011, 08:11 AM   #1
nkd
Member
 
Registered: Oct 2006
Location: india
Distribution: fedora 8, ubuntu 10.10
Posts: 318

Rep: Reputation: 34
syslog : access log of apache not working


hi all,
I am running a syslogd on my ubuntu 10.10 system.
I have a apache2 server on the same machine.

I have configured my apache2.conf file to send the error logs to the local syslog server. The config is as under :-
Quote:
LogLevel notice
ErrorLog syslog:local1
I have also configured the /etc/syslog.conf as under :-
Quote:
local1.info /var/log/apache2/error_logs
I have created a file in the /var/log/apache2 dir with the ownerships and permissions as under :-
Quote:
-rwxrwxrwx 1 syslog adm 77 2011-08-11 18:14 /var/log/apache2/error_logs
Next I restarted the sysklogd and apache2 servers with a service command as under :-
Quote:
sudo service sysklogd restart
sudo service apache2 restart
I thereafter observed the /var/log/apache2/error_logs file and found the entries for apache2 closing down and coming up as under :-
Quote:
Aug 11 18:14:14 cc apache2[4940]: [notice] caught SIGTERM, shutting down
Aug 11 18:14:19 cc apache2[5282]: [notice] ModSecurity for Apache/2.5.12 (http://www.modsecurity.org/) configured.
Aug 11 18:14:19 cc apache2[5282]: [notice] Original server signature: Apache/2.2.16 (Ubuntu) mod_ssl/2.2.16 OpenSSL/0.9.8o
Aug 11 18:14:20 cc apache2[5285]: [notice] Apache/2.2.16 (Ubuntu) mod_ssl/2.2.16 OpenSSL/0.9.8o Microsoft-IIS/5.0 configured -- resuming normal operations
Now the problem is I donot get any other messages thereafter. so it is hardly useful. How can I increase the logged messages from apache. I tried the facility
Quote:
local1.*
Then restarted the sysklogd and apache2 , but the contents of the /var/log/error_logs file remained similar.

Next , I followed the link.
I created the perl script for recording access logs of apache2. I then restarted the apache2 and sysklogd. when I opened my website from a browser, the access log did not work. Question is why ?

I think I am getting something wrong with the facility value , in apache2.conf it is ErrorLog syslog:local1 ! but the script is suggesting that it should be local2 in the line 4
Quote:
openlog('apache','cons','pid','local2');
I therefore changed the script to local1 in above line. But still no access log !?!?

Can someone help me out.
thanks in advance
bye
nishith
 
Old 08-11-2011, 12:57 PM   #2
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,165
Blog Entries: 1

Rep: Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032
Quote:
I have created a file in the /var/log/apache2 dir with the ownerships and permissions as under :-
-rwxrwxrwx 1 syslog adm 77 2011-08-11 18:14 /var/log/apache2/error_logs
You don't. The logfile will be created by restarting syslogd

Quote:
Now the problem is I donot get any other messages thereafter. so it is hardly useful. How can I increase the logged messages from apache. I tried the facility
Quote:
local1.*
Then restarted the sysklogd and apache2 , but the contents of the /var/log/error_logs file remained similar.
Use:
Code:
local1.* /var/log/apache2/error_logs
Mind that you need to check any vhost you may have and change the ErrorLog there too. After restarting the 2 daemons, try to access a non existent page and see if it's logged by syslog.

Quote:
Next , I followed the link.
I created the perl script for recording access logs of apache2.
<snip>
I therefore changed the script to local1 in above line. But still no access log !?!?
Dunno, but you may use the logger binary:
Code:
CustomLog "|/usr/bin/logger -p local2.info" combined
and of course add in /etc/syslog.conf:
Code:
local2.*  /var/log/apache2/access.log
Regards
 
1 members found this post helpful.
Old 08-11-2011, 01:15 PM   #3
nkd
Member
 
Registered: Oct 2006
Location: india
Distribution: fedora 8, ubuntu 10.10
Posts: 318

Original Poster
Rep: Reputation: 34
thanks bathory for your response.
I figured out the solutions as under :-
1. To get the error logs other than only the stop and starting messages from apache, change in /etc/apache2/apache2.conf file the directive LogLevel as under :-
Quote:
LogLevel info
This will ensure apache will send all messages above info severity level to syslog. Setting the
Quote:
local1.* /var/log/apache2/error_logs
in /etc/syslog.conf only tells syslog to catch all messages from the facility local1.
The problem in my case was LogLevel in apache2.conf file was set to notice. Therefore, nothing below that severity was being sent by apache to Syslog - and the messages were not just showing up in the /var/log/apache2/error_logs file.

2. The CustomLog entry was not working because, I was ignorant that the VirtualHost container in the /etc/apache2/site-enabled/default file had it's own CustomLog directive :-
Quote:
CustomLog ${APACHE_LOG_DIR}/ssl_access.log combined
which was overriding the directive set in the /etc/apache2/apache2.conf file.
So I just commented the CustomLog entry in the VirtualHost container.

A lot of thanks for your valuable help and suggestions
regards
nishith

Last edited by nkd; 08-11-2011 at 01:20 PM.
 
Old 05-08-2016, 01:48 PM   #4
sanonyme
LQ Newbie
 
Registered: May 2016
Posts: 1

Rep: Reputation: Disabled
please tell me where you have put this sentence : CustomLog |/usr/local/bin/apache_rsyslog combined !!! I'm blocked i dont' know where im supposed to put it
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Write Apache Error Log to Local File and Syslog Server ddenton Linux - Server 2 10-16-2009 08:32 AM
In Apache server, How to change log file location and log format for access log fil? since1993 Linux - Server 1 08-19-2009 04:14 PM
syslog-ng and apache access / error logs - can't seperate jamied66 Linux - Server 7 05-29-2009 09:57 AM
I need help getting syslog to log remotely, this is just the regular syslog. abefroman Linux - Software 2 06-05-2008 11:36 AM
Strange results in /var/log/apache/access.log subt13 Linux - Security 2 08-03-2004 01:21 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:03 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration