I'm using the Crontab to run a PHP script every 10 minutes the problem is that the processes are getting to run on the server, ie every 10 minutes I have one more process to run.
crontab -e
*/5 * * * * /usr/bin/php /path/to/test/test.php
Does Crontab not kill processes after they run out?
Or do I have to do something in the PHP script for the process to end?