Operating System - HP-UX
1832867 Members
3177 Online
110048 Solutions
New Discussion

Re: inetd Going down on signal 13

 
jeffrey groff
Occasional Advisor

inetd Going down on signal 13

What exactly does this mean and what are the possible causes of this?
4 REPLIES 4
Brian Hackley
Honored Contributor

Re: inetd Going down on signal 13

Hi,

/usr/include/sys/signal.h defines the signals:
define _SIGPIPE 13 /* write on a pipe with no one to read it */

I went to one of my HPUX 11 test systems and did a kill -13 on inetd, but it ignored the signal. Maybe you can run inetd -b (undocumented debug mode) then inetd -l to start connection logging, and watch syslog until you have another failure??

I don't what what OS nor inetd patch you have, and you didn't indicate if this happens "all the time" or just happened once. So I don't know if I helped or not...

-> Brian Hackley
Ask me about telecommuting!
linuxfan
Honored Contributor

Re: inetd Going down on signal 13

Hi Jeffrey,

Are you seeing these messages in the /var/adm/syslog/syslog.log file or does this error message show up when you do something?

-Regards
I am RU
They think they know but don't. At least I know I don't know - Socrates
jeffrey groff
Occasional Advisor

Re: inetd Going down on signal 13

Sorry for the lack of details. I'm on 10.20 and it only happened once. The error is being reported in syslog. I looked up signal 13 in signals.h just like you did and found the "pipe" explanation. I'm not going to worry about unless it becomes a chronic problem. Was just curious.....
Sridhar Bhaskarla
Honored Contributor

Re: inetd Going down on signal 13

Something might have caused inetd to create a pipe where obviously it wrote but there was no process to read. Since it is a broken pipe, kernel sent a signal 13 might be to delete the pipe from it's tables.
You may be disappointed if you fail, but you are doomed if you don't try