共计 3770 个字符,预计需要花费 10 分钟才能阅读完成。
本文首发于 2016-11-23 10:24:45
概述
Linux 下的任务调度分为两类:零碎任务调度 和用户任务调度。Linux 零碎工作是由 cron (crond)
这个零碎服务来管制的,这个零碎服务是默认启动的。用户本人设置的打算工作则应用 crontab
命令。
cron 配置文件
在 Ubuntu/Debian 中,配置文件门路为 /etc/crontab
(CentOS 也相似),其内容为:
# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# 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
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || (cd / && run-parts --report /etc/cron.daily)
47 6 * * 7 root test -x /usr/sbin/anacron || (cd / && run-parts --report /etc/cron.weekly)
52 6 1 * * root test -x /usr/sbin/anacron || (cd / && run-parts --report /etc/cron.monthly)
#
SHELL
环境变量用于指定零碎要应用的 shell,此处为/bin/sh
。PATH
环境变量指定了零碎执行命令的门路。- 也能够增加
MAILTO
变量,如果指定,则示意 crond 的工作执行信息将通过电子邮件发送给指定的用户。 - 其余局部在后文具体讲述。
用户定期要执行的工作,比方用户数据备份、定时邮件揭示等,都能够应用 crontab 工具来定制本人的打算工作。所有 非 root 用户
定义的 crontab 文件都被保留在 /var/spool/cron
目录中,其文件名与用户名统一。
ls /var/spool/cron/crontabs/admin
除此之外,还有两个文件 /etc/cron.deny
和/etc/cron.allow
,前者中可列出不容许哪些用户应用 crontab 命令,后者中可列出容许哪些用户应用 crontab 命令。
crontab 文件含意
用户所建设的 crontab 文件中,每一行都代表一项工作,每行的每个字段代表一项设置,它的格局共分为六个字段,前五段是工夫设定段,第六段是要执行的命令段,格局如下:
minute hour day month week command
各字段含意如下:
- minute:示意分钟,能够是从 0 到 59 之间的任何整数。
- hour:示意小时,能够是从 0 到 23 之间的任何整数。
- day:示意日期,能够是从 1 到 31 之间的任何整数。
- month:示意月份,能够是从 1 到 12 之间的任何整数。
- week:示意星期几,能够是从 0 到 7 之间的任何整数,这里的 0 或 7 代表星期日。
- command:要执行的命令,能够是系统命令,也能够是本人编写的脚本文件。
在以上各个字段中,还能够应用以下特殊字符:
星号(*)
:代表所有可能的值,例如 month 字段如果是星号,则示意在满足其它字段的制约条件后每月都执行该命令操作。逗号(,)
:能够用逗号隔开的值指定一个列表范畴,例如:1,2,5,7,8,9
。中杠(-)
:能够用整数之间的中杠示意一个整数范畴,例如:2-6
示意2,3,4,5,6
。正斜线 (/)
:能够用正斜线指定工夫的距离频率,例如:0-23/2
示意每两小时执行一次。同时正斜线能够和星号一起应用,例如:*/10
,如果用在 minute 字段,示意 每十分钟执行一次。
crontab 命令详解
命令格局:
usage: crontab [-u user] file
crontab [-u user] [-i] {-e | -l | -r}
(default operation is replace, per 1003.2)
-e (edit user's crontab)
-l (list user's crontab)
-r (delete user's crontab)
-i (prompt before deleting user's crontab)
- -u user:用于设定某个用户的 crontab 服务。
- file: file 为命令文件名,示意将 file 作为 crontab 的工作列表文件并载入 crontab;如果在命令行中没有指定这个文件,crontab 命令将承受规范输出(键盘)上键入的命令,并将它们载入 crontab。
- -e:编辑某个用户的 crontab 文件内容,如不指定用户则示意以后用户。
- -l:显示某个用户的 crontab 文件内容,如不指定用户则示意以后用户。
- -r:从 /var/spool/cron 目录中删除某个用户的 crontab 文件,如不指定用户,则默认删除以后用户 crontab 文件。
- -i:在删除用户的 crontab 文件时给确认提醒。
crontab 注意事项
- crontab 有 2 种编辑形式:间接编辑 /etc/crontab 文件 与crontab –e,其中
/etc/crontab
里的打算工作是 零碎的打算工作 ,而 用户的打算工作 须要通过crontab –e
来编辑。 - 每次编辑完某个用户的 cron 设置后,cron 主动在 /var/spool/cron 下生成一个与此用户同名的文件,此用户的 cron 信息都记录在这个文件中,
这个文件是不能够间接编辑的,只能够用 crontab -e 来编辑
。 - crontab 中的 command 尽量应用绝对路径,否则会常常因为门路谬误导致工作无奈执行。
- 新创建的 cron job 不会马上执行,至多要等 2 分钟能力执行,可重启 cron 来立刻执行。
%
在 crontab 文件中示意换行
,因而如果脚本或命令含有%
,须要应用\%
来进行本义。crontab -e
的默认编辑器是 nano,如需应用 vim,可在/etc/profile
或~/.bashrc
中增加export EDITOR=vi
来解决。
crontab 配置示例
-
每分钟执行 1 次 command(因 cron 默认每 1 分钟扫描一次,因而全为
*
即可):* * * * * command
-
每小时的第 3 和第 15 分钟执行 command:
3,15 * * * * command
-
每天上午 8 -11 点的第 3 和 15 分钟执行 command:
3,15 8-11 * * * command
-
每隔 2 天的上午 8 -11 点的第 3 和 15 分钟执行 command:
3,15 8-11 */2 * * command
-
每个星期一的上午 8 点到 11 点的第 3 和第 15 分钟执行 command:
3,15 8-11 * * 1 command
-
每晚的 21:30 分重启 smb:
-
21 * /etc/init.d/smb restart
-
每月 1、10、22 日的 4:45 重启 smb:
-
4 1,10,22 /etc/init.d/smb restart
-
每周六、周日的 1:10 重启 smb:
-
1 6,0 /etc/init.d/smb restart
-
每天 18:00 至 23:00 之间每隔 30 分钟重启 smb:
0,30 18-23 * * * /etc/init.d/smb restart
-
每隔 1 小时重启 smb:
-
/1 /etc/init.d/smb restart
-
早晨 23 点到早上 7 点之间,每隔 1 小时重启 smb:
-
23-7/1 * /etc/init.d/smb restart
-
每月的 4 号与每周一到周三的 11 点重启 smb:
-
11 4 * mon-wed /etc/init.d/smb restart
-
每小时执行
/etc/cron.hourly
目录内的脚本: -
1 * root run-parts /etc/cron.hourly
欢送关注我的微信公众号【数据库内核】:分享支流开源数据库和存储引擎相干技术。
题目 | 网址 |
---|---|
GitHub | https://dbkernel.github.io |
知乎 | https://www.zhihu.com/people/… |
思否(SegmentFault) | https://segmentfault.com/u/db… |
掘金 | https://juejin.im/user/5e9d3e… |
开源中国(oschina) | https://my.oschina.net/dbkernel |
博客园(cnblogs) | https://www.cnblogs.com/dbkernel |