there is a process that always terminate abrutply, and is there anyway to monitor it? i dont want to end up manually typing "service named start" or service anyprocess start". i need a php script that checks a process on the server, then if its not running, it will run it. the process "named". also, how can we put a cron to it, like check evry 5 seconds? tnx

the pesudo code goes like this

check process if process is running do nothing else, if is not running execute "service anyprocess start"

check every 5 seconds.

link|improve this question

36% accept rate
2  
Are you saying your named crashes? Then your server seems pretty hosed. A PHP script is probably not the way to fix it. Debug the cause of the problem, a *d needs to keep itself running without PHP as a crutch. – deceze Jul 27 '11 at 13:27
actually its not named. its another process. i just use "named" any ideas for writing script? – Lufthansa Jul 27 '11 at 13:34
@Lufthansa: Talk with the system administrator for the system that happens and discuss the issue. He should give you the hints you need to solve the problem. Otherwise do an internet search for watchdog. – hakre Jul 27 '11 at 13:41
feedback

2 Answers

up vote 2 down vote accepted

The best thing would not be some home-grown PHP script, but a tested application that does this for you. There are many, but I am fond of Monit. It does exactly what you ask. Watch a daemon or program and if it fails, restart it.

Even better is that your daemon will be restarted immediately and not just whenever you put it in your cron.

link|improve this answer
tnx bro! u just saved some coding hours – Lufthansa Jul 27 '11 at 13:56
feedback

Don't do this in PHP use Monit instead.

link|improve this answer
tnx!!! bro. so monit is like monitoring? – Lufthansa Jul 27 '11 at 13:55
@Lufthansa that is exactly it. It monitors any process or daemon (amongst other things) and can be set to auto restart it upon failure. – Treffynnon Jul 27 '11 at 13:56
feedback

Your Answer

 
or
required, but never shown

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