Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Jan 2005 12:46:53 -0500
From:      Gerard Samuel <fbsd-questions@trini0.org>
To:        Kevin Kinsey <kdk@daleco.biz>
Cc:        freebsd-questions <freebsd-questions@freebsd.org>
Subject:   Re: [Repost] php log to own syslog file
Message-ID:  <41F1400D.4040204@trini0.org>
In-Reply-To: <41F13CFA.9050205@daleco.biz>
References:  <41F136B9.20604@trini0.org> <41F13CFA.9050205@daleco.biz>

next in thread | previous in thread | raw e-mail | index | archive | help
Kevin Kinsey wrote:

> Gerard Samuel wrote:
>
>> Im trying to figure out how to setup FreeBSD 5.3 to log
>> php events to its own log file via syslog.
>> In /etc/syslog.conf, I added ->
>> # php logs
>> !httpd
>> *.*                                             /var/log/php.log
>>
>> I created a empty file for the log ->
>> gladiator# touch /var/log/php.log
>> gladiator# ls -l /var/log/php*
>> -rw-r--r--  1 root  wheel  0 Jan 20 16:37 /var/log/php.log
>>
>> Then I HUPped syslogd ->
>> gladiator# ps aux | grep syslogd
>> root     277  0.0  0.2  1316  908  ??  Is    4:14PM   0:00.01
>> /usr/sbin/syslogd -s
>> gladiator# kill -HUP 277
>>
>> In my php script, Im using ->
>> define_syslog_variables();
>> openlog('TESTING', LOG_NDELAY, LOG_USER);
>> syslog(LOG_INFO, $message);
>> closelog();
>>
>> But nothing is being logged to the file.
>> Am I doing something wrong on the FreeBSD side of things??
>>
>> Thanks
>
>
>
> PHP as an Apache module?  IANAE, but wouldn't
> you have to change log settings in httpd.conf? 

I dont think so.  These errors, that I want to log, are initiated by
the php function syslog() (look at the example above).
These messages are supposed to go to the syslogd daemon, not to httpd's 
log file.
In the example above, if I change the priority from "LOG_INFO" to 
"LOG_WARNING",
the error messages go to /var/log/messages.
I just need it to start going to its own file.
The ultimate goal, is that I want to have a cluster of webservers,
logging to a central server.

Thanks



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?41F1400D.4040204>