vote up 0 vote down star
2

I have a PHP script that listens on a queue. Theoretically, it's never supposed to die. Is there something to check if it's still running? Something like Ruby's God ( http://god.rubyforge.org/ ) for PHP?

God is language agnostic but it would be nice to have a solution that works on windows as well.

flag

6 Answers

vote up 3 vote down

Simple bash script

#!/bin/bash
while [true]; do
    if ! pidof -x script.php;
    then
    	php script.php &
    fi
done
link|flag
this wouldn't work on windows though... – Eric Lamb Sep 22 '08 at 21:37
Also, watch your CPU usage skyrocket :) – broady Sep 23 '08 at 12:15
not really broady... I use this quite often (well, ok, on a cron job every minute) – Mez Sep 24 '08 at 6:26
vote up 1 vote down

Not for windows, but...

I've got a couple of long-running PHP scripts, that have a shell script wrapping it. You can optionally return a value from the script that will be checked in the shell-script to exit, restart immediately, or sleep for a few seconds -and then restart.

Here's a simple one that just keeps running the PHP script till it's manually stopped.

#!/bin/bash
clear
date
php -f cli-SCRIPT.php
echo "wait a little while ..."; sleep 10
exec $0

The "exec $0" restarts the script, without creating a sub-process that will have to unravel later (and take up resources in the meantime). This bash script wraps a mail-sender, so it's not a problem if it exits and pauses for a moment.

link|flag
This is pretty much the same as the God script I'm currently using and definitely better than busy-waiting. – Smokinn Sep 23 '08 at 14:47
vote up 1 vote down

troelskn wrote:

Just append a second command after the script. When/if it stops, the second command is invoked. Eg.:

php daemon.php | mail -s "Daemon stopped" you@example.org

This will call mail each time a line is printed in daemon.php (which should be never, but still.)

Instead, use the double ampersand operator to separate the commands, i.e.

php daemon.php & mail -s "Daemon stopped" you@example.org
link|flag
You only use a single & here, and your comment is untrue. mail does not send on each line, it'll only send on an EOF – Mez Aug 6 at 22:41
vote up 1 vote down

Just append a second command after the script. When/if it stops, the second command is invoked. Eg.:

php daemon.php 2>&1 | mail -s "Daemon stopped" you@example.org

Edit:

Technically, this invokes the mailer right away, but only completes the command when the php script ends. Doing this captures the output of the php-script and includes in the mail body, which can be useful for debugging what caused the script to halt.

link|flag
No, during the running of php, the mail command is ran. But, once it stops, it sends an EOF, which causes the mailer to send the mail – Mez Aug 6 at 22:40
Thanks for pointing it out Mez. I'll edit the snippet. – troelskn Aug 7 at 8:15
vote up 0 vote down

One possible solution is to have it listen on a port using the socket functions. You can check that the socket is still listening with a simple script. Even a monitoring service like pingdom could monitor its status. If it dies, the socket is no longer listening.

Plenty of solutions.. Good luck.

link|flag
vote up 0 vote down

If you have your hands on the script, you can just ask him to set a time value every X times in db, and then let a cron job check if that value is up to date.

link|flag

Your Answer

Get an OpenID
or

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