• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    crontab定时任务不执行的原因分析与解决方法

    前言

    实现Linux定时任务有:cron、anacron、at等,cron是服务名称,crond是后台进程,crontab则是定制好的计划任务表

    然而今天真是长知识 用了 crontab 这么久 才知道原来也需要 启动

    添加了定时任务 但是并不好使

    [root@dev-gl-lh1 ApiAgent]# cat /etc/crontab 
    SHELL=/bin/bash
    PATH=/sbin:/bin:/usr/sbin:/usr/bin
    MAILTO=root
    HOME=/
    
    # For details see man 4 crontabs
    
    # Example of job definition:
    # .---------------- 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
    
    # 缓存coin 映射数据
    */5 * * * * root /usr/bin/php /data/application/SwooleMoney/script/bin/cli.php CacheData cacheCoinMap
    
    # 缓存交易对信息
    */1 * * * * root /usr/bin/php /data/application/SwooleMoney/script/bin/cli.php CacheData cacheSymbol
    
    # 删除深度数据
    */1 * * * * root /usr/bin/php /data/application/SwooleMoney/script/bin/cli.php CacheData clearExchangeDepths >/tmp/clearExchangeDepths.log
    ~          
    ~  

    每分钟执行一次脚本 但等到花都谢了 都没等到日志

    # 查看crontab 状态
    [root@dev-gl-lh1 ApiAgent]# /etc/init.d/crond status 
    crond dead but pid file exists
    # 启动crontab 服务
    [root@dev-gl-lh1 ApiAgent]# /etc/init.d/crond start
    Starting crond: 

    得嘞 日志有输出了 脚本成功执行, 涨知识了.

    参考地址: https://www.jb51.net/article/154290.htm

    总结

    以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。

    上一篇:linux系统下的时间配置综述
    下一篇:crontab定时任务不执行的一些原因总结
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    crontab定时任务不执行的原因分析与解决方法 crontab,定时,任务,不执,行的,