当前位置: 移动技术网 > 网络运营>服务器>Linux > crontab定时任务不执行的原因分析与解决方法

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

2019年05月24日  | 移动技术网网络运营  | 我要评论

前言

实现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: 

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

参考地址:

总结

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

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网