显示目录
常见问题FAQ 安装部署

Linux下定时任务配置文档

【如安装了宝塔此处可忽略,直接在计划任务中配置即可】


crontab -e


# 执行频率:10分钟
*/10 * * * * /usr/local/php/bin/php -r "file_get_contents('http://xxx.com/crontab/Minutes/index.html');"
# 执行频率:1小时
0 */1 * * * /usr/local/php/bin/php -r "file_get_contents('http://xxx.com/crontab/Hour/index.html');"
# 执行频率:1天
0 3 * * * /usr/local/php/bin/php -r "file_get_contents('http://xxx.com/crontab/Date/index.html');"
# 执行频率:1个月
0 4 1 * * /usr/local/php/bin/php -r "file_get_contents('http://xxx.com/crontab/Month/index.html');"


可以查看定时任务记录

tail -f /var/log/cron

cat /var/log/cron