在Linux或类似Unix的系统上,cron是什么?

时间:2020-01-09 10:38:05  来源:igfitidea点击:

什么是cron?
为什么在Linux,OS X和类似Unix的系统上需要cron服务?

Cron是UNIX/Linux/BSD服务或守护程序,用于在给定的时间和日期执行命令或脚本。它也称为时钟守护程序,它根据文件中的指令在指定的日期和时间执行命令。

通常,crontab使用守护程序crond,该守护程序在后台不断运行,每分钟检查一次,以查看是否需要执行任何计划的作业。
如果是这样,它将执行它们。
这些作业通常称为Cron作业。

Cron由一组称为crontabs的文件控制。
/etc/crontab中有一个主文件。
每个用户cronjob都存储在/var/spool/cron/username目录中。
要查看主文件,请输入以下cat命令:

$ cat /etc/crontab

输出示例:

# /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

# m h dom mon dow user	command
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 )
#

编辑Crontab或设置自己的工作

只需执行以下命令:

$ crontab -e

要列出您自己的作业,请输入以下命令:

$ crontab -l