On Wed, 15 Nov 2000, debys wrote:
> From: Tzafrir Cohen <[EMAIL PROTECTED]>
>
> > On Wed, 15 Nov 2000, debys wrote:
> >
> > > > try
> > > > chkconfig --list syslog
> > >
> > > syslog 0:off1:off 2:on 3:on 4:on 5:on 6:off
> >
> > Now: is it running?
> >
> > /etc/rc.d/init.d/syslog status
>
> syslog dead but pid file exists
>
> >
> > If not: try starting it:
> > /etc/rc.d/init.d/syslog start
>
> Starting system logger : [FAILED]
> Starting kernel logger:
So apply standard debugging techniques:
man syslogd shows that there is a -d switch for debug.
See what parameters are used in the init.d script. In my machine it is:
daemon syslogd -m 0
daemon is a function used in redhat's init.d scripts, and is basically a
wrapper for running the command after it.
so try running:
syslogd -m 0
or maybe:
syslog -m 0 -d
and see if you get some more information.
--
Tzafrir Cohen
mailto:[EMAIL PROTECTED]
http://www.technion.ac.il/~tzafrir
=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]