In my server, I have scheduled following set of cron files.
00 21 * * * /bin/sh /path/db_backup.sh
*/2 * * * * /usr/bin/php /path/file1.php
*/2 * * * * /usr/bin/php /path/file2.php
...
*/2 * * * * /usr/bin/php /path/file7.php
*/2 * * * * /usr/bin/php /path/file8.php
All the cron files are working on time. But last two php files 7 and 8 are not running.
Whether it's skipped due to previous crons tooks too time or any other reason behinds ?
Please help me to resolve this issue. Thanks in advance.