Karp 的技术博客

今天真是长知识 用了 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:                                            [  OK  ]

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

参考地址: https://blog.csdn.net/u011734144/article/details/54576469

版权属于:karp
作品采用:本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
更新于: 2024年10月18日 06:28
10

目录

来自 《Crontab定时任务不执行的原因》