|
Posted by J.O. Aho on 10/27/07 13:18
Séverin Richard wrote:
> Hi all,
>
> How can i kill a cron process at the begining of my cron task (php script):
Easy way is to do a killall (see the man page how to use it), of course
this would kill the current process too.
A more advanced is to have a process list (file) where you store the
process number each time that a script is run, the script then kills all
the processes in the list except its own, clear out the processes it has
killed.
> My cron task starts evry 5 minutes,
> but may work more than this time. (no timeout configured on my server
> for cron tasks (?).
Time out is for web servers only, if you want to do a time out thing in
cli scripts, then you need to build it yourself into your scripts.
--
//Aho
Navigation:
[Reply to this message]
|