前言
實(shí)現(xiàn)Linux定時(shí)任務(wù)有:cron、anacron、at等,cron是服務(wù)名稱,crond是后臺(tái)進(jìn)程,crontab則是定制好的計(jì)劃任務(wù)表
然而今天真是長(zhǎng)知識(shí) 用了 crontab 這么久 才知道原來也需要 啟動(dòng)
添加了定時(shí)任務(wù) 但是并不好使
[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 映射數(shù)據(jù)
*/5 * * * * root /usr/bin/php /data/application/SwooleMoney/script/bin/cli.php CacheData cacheCoinMap
# 緩存交易對(duì)信息
*/1 * * * * root /usr/bin/php /data/application/SwooleMoney/script/bin/cli.php CacheData cacheSymbol
# 刪除深度數(shù)據(jù)
*/1 * * * * root /usr/bin/php /data/application/SwooleMoney/script/bin/cli.php CacheData clearExchangeDepths >/tmp/clearExchangeDepths.log
~
~
每分鐘執(zhí)行一次腳本 但等到花都謝了 都沒等到日志
# 查看crontab 狀態(tài)
[root@dev-gl-lh1 ApiAgent]# /etc/init.d/crond status
crond dead but pid file exists
# 啟動(dòng)crontab 服務(wù)
[root@dev-gl-lh1 ApiAgent]# /etc/init.d/crond start
Starting crond:
得嘞 日志有輸出了 腳本成功執(zhí)行, 漲知識(shí)了.
參考地址: https://www.jb51.net/article/154290.htm
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問大家可以留言交流,謝謝大家對(duì)腳本之家的支持。