I want to achieve this:

if the daemon gets SIGHUP than run the process again (as child) and kill the parent.

When i'm running it, the first time is working:

> php test.php
> kill -HUP pid
> ps -ef |grep test.php
> result:... newPID test.php

The problem is that if now i'm killing the child process,the function is not triggered

> kill -HUP newPID
> ps -ef |grep test.php
> result: ... newPID(the same) test.php

The code:

test.php:
<?php
   declare(ticks = 1);

   $mypid = posix_getpid();

   function sig_handler()
   {

   Global $mypid;
   echo "Received sighup, we need to reload ourselves now \n";
   echo "mypid:$mypid \n";
   system("(php test.php)>/dev/null &");

   posix_kill($mypid,9);

   }

   pcntl_signal(SIGHUP,  "sig_handler");

   sleep(500);

   ?>

This code works on PHP 5.2.9 but not on PHP 5.3.5. Is there any way to make it works also on that version?

Thanks!

Ronny

link|improve this question

67% accept rate
feedback

1 Answer

My suspicion here is that this is a bug in PHP. I'm still trying to confirm with absolute certainty, but as it stands we are having the same issue.

If you launch a child process and send a signal, the child process will receive and handle the signal. If you subsequently re-launch another child process from the parent script and follow up with another signal, the second signal is not received by the child process. I've tweaked, twiddled, and toiled to find a way around this issue in PHP 5.3.10 to no avail.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.