http://www.perlmonks.org?node_id=935388


in reply to Re^4: Daemon crashes the system
in thread Daemon crashes the system

maybe not enough, only 3. if I add: $ SIG {CHLD} = 'IGNORE'; in each sub?

Replies are listed 'Best First'.
Re^6: Daemon crashes the system
by RMGir (Prior) on Nov 02, 2011 at 13:19 UTC
    I don't think I can help you any more than this - there's too much I don't know about your system.

    Have you tried using system monitoring tools to look at the machine and see what's going on? Are there a lot of php or perl processes still running? Is there one process (or one KIND of process) that's using too many resources?

    Late edit: You asked "if I add: $ SIG {CHLD} = 'IGNORE'; in each sub?" - that doesn't matter, the $SIG{CHLD} setting is global - it affects the whole program. As long as you do it before the first "fork", it's fine.


    Mike