Re: [Repost] Logging to custom file via syslog [was]: php log to own syslog file

2005-01-27 Thread Gerard Samuel
Ruben de Groot wrote:
On Tue, Jan 25, 2005 at 11:28:06AM -0500, Gerard Samuel typed:
<...>
 

This will only log user.info messages coming from the ppp program to
/var/log/php.log. Either move the "user.=info" line up or finish the
"!ppp" block with a "!*" line (see manpage).
 

I went over the man page, and I dont see any references about finishing
program blocks.  So Im taking your word for it.
   


From syslog.conf(5):
  A program or hostname specification may be reset by giving the program or
  hostname as `*'.
Thanks.  Yes I saw that, but wasn't sure of its usage
i.e. '*' or '!*'
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [Repost] Logging to custom file via syslog [was]: php log to own syslog file

2005-01-27 Thread Ruben de Groot
On Tue, Jan 25, 2005 at 11:28:06AM -0500, Gerard Samuel typed:
<...>

> >This will only log user.info messages coming from the ppp program to
> >/var/log/php.log. Either move the "user.=info" line up or finish the
> >"!ppp" block with a "!*" line (see manpage).
> >
> 
> I went over the man page, and I dont see any references about finishing
> program blocks.  So Im taking your word for it.

>From syslog.conf(5):

   A program or hostname specification may be reset by giving the program or
   hostname as `*'.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re[2]: [Repost] Logging to custom file via syslog [was]: php log to own syslog file

2005-01-25 Thread Hexren
GS> Ruben de Groot wrote:

>>On Mon, Jan 24, 2005 at 12:18:46PM -0500, Gerard Samuel typed:
>>  
>>
>>>I think this is a FreeBSD problem.
>>>
>>>
>>
>>It's not.
>>
>>  
>>
>>>Here is what I have.
>>>1.  I removed my initial modification of /etc/syslog.conf, and added ->
>>>user.=info  /var/log/php.log
>>>
>>>According to syslog.conf man page, that should mean, any syslog events that
>>>come is as LOG_USER, and only LOG_INFO, should be appended to
>>>/var/log/php.log
>>>2.  I HUPped syslogd.
>>>3.  Im using logger to try to add a message to the log file like ->
>>>gladiator# logger -s -p user.info test
>>>gsam: test
>>>
>>>But unfortunately, the message "test" doesn't appear in /var/log/php.log OR
>>>/var/log/messages.
>>>I currently have the file /var/log/php.log chmodded to 777.
>>>Im including my syslog.conf file.
>>>Can anyone tell me, as to why, Im unable to log these tests?
>>>Thanks
>>>
>>>/etc/syslog.conf
>>>
>>># $FreeBSD: src/etc/syslog.conf,v 1.26 2003/04/23 13:08:31 des Exp $
>>>#
>>>#   Spaces ARE valid field separators in this file. However,
>>>#   other *nix-like systems still insist on using tabs as field
>>>#   separators. If you are sharing this file between systems, you
>>>#   may want to use only tabs as field separators here.
>>>#   Consult the syslog.conf(5) manpage.
>>>
>>>
>>>
GS> -- snip --

>>>user.=info  /var/log/php.log
>>>
>>>
>>
>>This will only log user.info messages coming from the ppp program to
>>/var/log/php.log. Either move the "user.=info" line up or finish the
>>"!ppp" block with a "!*" line (see manpage).
>>

GS> I went over the man page, and I dont see any references about finishing
GS> program blocks.  So Im taking your word for it.
GS> So after some trial runs, I've appended my syslog.conf like so ->
GS> !*

GS> httpd
GS> user.=info  /var/log/php.log

GS> Now I can use the logger command to log to the file now.
GS> Plus, I can log to the file via php's syslog() function.
GS> The only thing bothering me, is the syntax of the program.
GS> If I use "!httpd", it doesn't log to the file.
GS> If anyone else has any input on this, I would be grateful.
GS> Thanks
GS> ___
GS> freebsd-questions@freebsd.org mailing list
GS> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
GS> To unsubscribe, send any mail to "[EMAIL PROTECTED]"

-


I have something like this running with good results.


!ppp
*.* /var/log/ppp.log
!dhcpd
*.* |/usr/scripts/dhcplog.pl

Hexren

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [Repost] Logging to custom file via syslog [was]: php log to own syslog file

2005-01-25 Thread Gerard Samuel
Ruben de Groot wrote:
On Mon, Jan 24, 2005 at 12:18:46PM -0500, Gerard Samuel typed:
 

I think this is a FreeBSD problem.
   

It's not.
 

Here is what I have.
1.  I removed my initial modification of /etc/syslog.conf, and added ->
user.=info  /var/log/php.log
According to syslog.conf man page, that should mean, any syslog events that
come is as LOG_USER, and only LOG_INFO, should be appended to
/var/log/php.log
2.  I HUPped syslogd.
3.  Im using logger to try to add a message to the log file like ->
gladiator# logger -s -p user.info test
gsam: test
But unfortunately, the message "test" doesn't appear in /var/log/php.log OR
/var/log/messages.
I currently have the file /var/log/php.log chmodded to 777.
Im including my syslog.conf file.
Can anyone tell me, as to why, Im unable to log these tests?
Thanks
/etc/syslog.conf

# $FreeBSD: src/etc/syslog.conf,v 1.26 2003/04/23 13:08:31 des Exp $
#
#   Spaces ARE valid field separators in this file. However,
#   other *nix-like systems still insist on using tabs as field
#   separators. If you are sharing this file between systems, you
#   may want to use only tabs as field separators here.
#   Consult the syslog.conf(5) manpage.
   

-- snip --
user.=info  /var/log/php.log
   

This will only log user.info messages coming from the ppp program to
/var/log/php.log. Either move the "user.=info" line up or finish the
"!ppp" block with a "!*" line (see manpage).
I went over the man page, and I dont see any references about finishing
program blocks.  So Im taking your word for it.
So after some trial runs, I've appended my syslog.conf like so ->
!*
httpd
user.=info  /var/log/php.log
Now I can use the logger command to log to the file now.
Plus, I can log to the file via php's syslog() function.
The only thing bothering me, is the syntax of the program.
If I use "!httpd", it doesn't log to the file.
If anyone else has any input on this, I would be grateful.
Thanks
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: [Repost] Logging to custom file via syslog [was]: php log to own syslog file

2005-01-25 Thread Ruben de Groot
On Mon, Jan 24, 2005 at 12:18:46PM -0500, Gerard Samuel typed:
> 
> I think this is a FreeBSD problem.

It's not.

> Here is what I have.
> 1.  I removed my initial modification of /etc/syslog.conf, and added ->
> user.=info  /var/log/php.log
> 
> According to syslog.conf man page, that should mean, any syslog events that
> come is as LOG_USER, and only LOG_INFO, should be appended to
> /var/log/php.log
> 2.  I HUPped syslogd.
> 3.  Im using logger to try to add a message to the log file like ->
> gladiator# logger -s -p user.info test
> gsam: test
> 
> But unfortunately, the message "test" doesn't appear in /var/log/php.log OR
> /var/log/messages.
> I currently have the file /var/log/php.log chmodded to 777.
> Im including my syslog.conf file.
> Can anyone tell me, as to why, Im unable to log these tests?
> Thanks
> 
> /etc/syslog.conf
> 
> # $FreeBSD: src/etc/syslog.conf,v 1.26 2003/04/23 13:08:31 des Exp $
> #
> #   Spaces ARE valid field separators in this file. However,
> #   other *nix-like systems still insist on using tabs as field
> #   separators. If you are sharing this file between systems, you
> #   may want to use only tabs as field separators here.
> #   Consult the syslog.conf(5) manpage.
> *.err;kern.debug;auth.notice;mail.crit  /dev/console
> *.notice;authpriv.none;kern.debug;lpr.info;mail.crit;news.err
> /var/log/messages
> security.*  /var/log/security
> auth.info;authpriv.info /var/log/auth.log
> mail.info   /var/log/maillog
> lpr.info/var/log/lpd-errs
> ftp.info/var/log/xferlog
> cron.*  /var/log/cron
> *.=debug/var/log/debug.log
> *.emerg *
> # uncomment this to log all writes to /dev/console to /var/log/console.log
> #console.info   /var/log/console.log
> # uncomment this to enable logging of all log messages to /var/log/all.log
> # touch /var/log/all.log and chmod it to mode 600 before it will work
> #*.*/var/log/all.log
> # uncomment this to enable logging to a remote loghost named loghost
> #*.*@loghost
> # uncomment these if you're running inn
> # news.crit /var/log/news/news.crit
> # news.err  /var/log/news/news.err
> # news.notice   /var/log/news/news.notice
> !startslip
> *.* /var/log/slip.log
> !ppp
> *.* /var/log/ppp.log
> 
> user.=info  /var/log/php.log

This will only log user.info messages coming from the ppp program to
/var/log/php.log. Either move the "user.=info" line up or finish the
"!ppp" block with a "!*" line (see manpage).

Ruben

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


[Repost] Logging to custom file via syslog [was]: php log to own syslog file

2005-01-24 Thread Gerard Samuel
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  ??  Is4: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. 

I think this is a FreeBSD problem.
Here is what I have.
1.  I removed my initial modification of /etc/syslog.conf, and added ->
user.=info  /var/log/php.log
According to syslog.conf man page, that should mean, any syslog events that
come is as LOG_USER, and only LOG_INFO, should be appended to
/var/log/php.log
2.  I HUPped syslogd.
3.  Im using logger to try to add a message to the log file like ->
gladiator# logger -s -p user.info test
gsam: test
But unfortunately, the message "test" doesn't appear in /var/log/php.log OR
/var/log/messages.
I currently have the file /var/log/php.log chmodded to 777.
Im including my syslog.conf file.
Can anyone tell me, as to why, Im unable to log these tests?
Thanks
/etc/syslog.conf

# $FreeBSD: src/etc/syslog.conf,v 1.26 2003/04/23 13:08:31 des Exp $
#
#   Spaces ARE valid field separators in this file. However,
#   other *nix-like systems still insist on using tabs as field
#   separators. If you are sharing this file between systems, you
#   may want to use only tabs as field separators here.
#   Consult the syslog.conf(5) manpage.
*.err;kern.debug;auth.notice;mail.crit  /dev/console
*.notice;authpriv.none;kern.debug;lpr.info;mail.crit;news.err
/var/log/messages
security.*  /var/log/security
auth.info;authpriv.info /var/log/auth.log
mail.info   /var/log/maillog
lpr.info/var/log/lpd-errs
ftp.info/var/log/xferlog
cron.*  /var/log/cron
*.=debug/var/log/debug.log
*.emerg *
# uncomment this to log all writes to /dev/console to /var/log/console.log
#console.info   /var/log/console.log
# uncomment this to enable logging of all log messages to /var/log/all.log
# touch /var/log/all.log and chmod it to mode 600 before it will work
#*.*/var/log/all.log
# uncomment this to enable logging to a remote loghost named loghost
#*.*@loghost
# uncomment these if you're running inn
# news.crit /var/log/news/news.crit
# news.err  /var/log/news/news.err
# news.notice   /var/log/news/news.notice
!startslip
*.* /var/log/slip.log
!ppp
*.* /var/log/ppp.log
user.=info  /var/log/php.log
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"