Erwin Kerk wrote:
Al wrote:
I've got a question about the following cronjob.
#At 3:01 our time, run backups
1 0 * * * /usr/local/bin/php
/www/r/rester/htdocs/auto_backup/back_em_up.php
>/www/r/rester/htdocs/auto_backup/cron.log 2>&1
#At 3:02 clean up sessions folder
2 0 * * * (find /www/r/rester/htdocs/sessions/ -name 'sess_*' -mtime
+1 -delete)
#this is only for testing a new cronjob, every minute
* * * * * /usr/local/bin/php
/www/r/rester/htdocs/phpList_cronjob/process_cronjob.php
>>/www/r/rester/htdocs/phpList_cronjob/cron.log 2>>&1
The new one doesn't seem to want to run until after 3:01 or 3:02.
Shouldn't the sever just run it every minute?
And, the every minute job doesn't add anything to its log file.
Apache on a virtual host. The 3:01 and 3:02 jobs have been running
fine for months.
Thanks
The CRON daemon only refreshes it's job list after a job in the current
list is completed. Therefore, the CRON daemon won't notice the
"every-minute" job until 3.01 pm.
Erwin
Wow, that is a key point and makes sense. Boy, I read several refs about
cronjobs and not one of them mentioned this.
So, if I put my 1 minute job first in the list, all should be well?
Thanks......
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php