Operating System - HP-UX
1833926 Members
3738 Online
110063 Solutions
New Discussion

Re: read funix message on syslog

 
Franklin Merida
Occasional Advisor

read funix message on syslog

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
3 REPLIES 3
Jan-Erik Sanne
Advisor

Re: read funix message on syslog

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

Life is not life unless you make mistakes
Franklin Merida
Occasional Advisor

Re: read funix message on syslog

Thanks janerik,

I was having to syslogd running simultaneously.

Best regards,

Franklin