每隔24小时使用crontab执行脚本,每隔一小时执行一次脚本
我需要一个crontab语法,它应该每分钟执行一个特定的PHP脚本/var/www/html/a.php
。 每分钟执行必须从00:00开始。 另一个必须在/var/www/html/reset.php
(每24小时一次)执行脚本的任务。
每一分钟:
* * * * * /path/to/php /var/www/html/a.php
每24小时(每个午夜):
0 0 * * * /path/to/php /var/www/html/reset.php
有关crontab的工作方式,请参阅此参考资料: http ://adminschoice.com/crontab-quick-reference,以及用于构buildcron jobx的这个方便的工具: http ://www.htmlbasix.com/crontab.shtml
这是/ etc / crontab的格式:
# .---------------- minute (0 - 59) # | .------------- hour (0 - 23) # | | .---------- day of month (1 - 31) # | | | .------- month (1 - 12) OR jan,feb,mar,apr ... # | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat # | | | | | # * * * * * user-name command to be executed
我build议复制并粘贴到您的crontab文件的顶部,以便您始终可以方便地使用参考。 RedHat系统是默认设置的。
每分钟运行一次:
* * * * * username /var/www/html/a.php
在每天的午夜运行一些东西:
0 0 * * * username /var/www/html/reset.php
您可以在要运行的命令中包含/ usr / bin / php,也可以直接执行php脚本:
chmod +x file.php
用shebang启动你的php文件,以便你的shell知道使用哪个解释器:
#!/usr/bin/php <?php // your code here