溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ubuntu怎么定時(shí)執(zhí)行python腳本

發(fā)布時(shí)間:2022-05-09 10:17:57 來源:億速云 閱讀:390 作者:iii 欄目:大數(shù)據(jù)

這篇文章主要介紹了ubuntu怎么定時(shí)執(zhí)行python腳本的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇ubuntu怎么定時(shí)執(zhí)行python腳本文章都會(huì)有所收獲,下面我們一起來看看吧。

crontab

編輯定時(shí)任務(wù)

crontab -e

參數(shù)定義:

  • -u 指定用戶, - -l 列出用戶任務(wù)計(jì)劃,

  • -r 刪除用戶任務(wù),

  • -e 編輯用戶任務(wù)

英文介紹:

# edit this file to introduce tasks to be run by cron.
#
# each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# to define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# for example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/

中文解釋:

格式

m h dom mon dow command

以上為縮寫,這里提供全拼對(duì)照:

minute (m),  hour (h), day of month (dom), month (mon), day of week (dow)

含義如下:

  • m 每個(gè)小時(shí)的第幾分鐘執(zhí)行該任務(wù)

  • h 每天的第幾個(gè)小時(shí)執(zhí)行該任務(wù)

  • dom 每月的第幾天執(zhí)行該任務(wù)

  • mon 每年的第幾個(gè)月執(zhí)行該任務(wù)

  • dow 每周的第幾天執(zhí)行該任務(wù) - command 指定要執(zhí)行的程序

分      小時(shí)    日      月       星期     命令
0-59   0-23   1-31   1-12     0-6     command

其他:

  • 其中星期中0表示周日。

  • * 代表任何時(shí)間,比如第一個(gè)分鐘,用 * 就代表每一小時(shí)的每一分鐘都執(zhí)行

  • - 表示區(qū)間,比如1-3

  • , 如果區(qū)間不連續(xù),可以用,例如1,3,6    編輯完成后wq 保存退出

重啟服務(wù)

service cron restart

注意事項(xiàng)

注意,一定要用絕對(duì)路徑。否則可能會(huì)執(zhí)行失敗。

比如,我們要執(zhí)行

python bwh.py

那么你需要干的第一件事是

which python

以此來查看python命令的真正路徑

root@ubuntu:~# which python
/root/.pyenv/shims/python

然后,查看bwh.py的全路徑,在bwh.py所在文件夾下

pwd
/app/python/blog

然后路徑便為

/app/python/blog/bwh.py

所以整條記錄應(yīng)該這樣編輯

0 9 * * * /root/.pyenv/shims/python /app/python/blog/bwh.py > /tmp/new_blog_bwh.log

上面的記錄是指每天9點(diǎn)整執(zhí)行/root/.pyenv/shims/python /app/python/blog/bwh.py并將打印日志輸出到/tmp/new_blog_bwh.log

關(guān)于“ubuntu怎么定時(shí)執(zhí)行python腳本”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“ubuntu怎么定時(shí)執(zhí)行python腳本”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI