read funix message on syslog
Subject: read funix message on syslog
Franklin Merida
May 27, 2003 23:29:14 GMT
Hi All,
I'm having repeatedly this message on syslog
syslogd: read funix: Resource temporarily unavailable
And the syslog daemon was down. Has anyone face this before.
Thank you and best regards,
Franklin
Note: If you are the author of this question and wish to assign points to any of the answers, please login first.For more information on assigning points ,click here
=====================Answer========================
Hi,
This error is usually caused by having multiple syslogd daemons running;
$ ps -ef | grep syslog*
When multiple processes are running, confusion occurs as to which daemon needs to be writing
to the syslog file and the error occurs. To resolve this issue, stop the syslogd daemons running and restart the one daemon necessary to write output to the syslog file. Follow these steps:
$ /sbin/init.d/syslogd stop #kill all syslogd
$ ps -ef | grep syslog* #Verify no daemons running.
$ /sbin/init.d/syslogd start #Restart syslogd
$ ps -ef | grep syslog* #Verify only one syslogd running.
Then monitor the /var/adm/syslog/syslog.log file for these errors again. This should resolve the issue. Hopes this helps.
rgds,
janerik

0 Comments:
댓글 쓰기
<< Home