致力于提供有竞争力的软件解决方案和服务,德尚网络欢迎您!
技术/产品咨询
技术/产品咨询
    • - 微信扫一扫 -

      QQ:181814630

      电话:15116362044

DSShop演示
DSO2O演示
DSMall演示

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