day23 - 定时任务

1、什么是crond

crond就是计划任务,类似于我们平时生活中的闹钟。定点执行。

2、为什么要使用crond

crond主要是做一些周期性的任务,比如: 凌晨3点定时备份数据。比如:11点开启网站抢购接口,12点关闭网站抢购接口。

3、计划任务主要分为以下两种情况

* 系统级别的定时任务:临时文件清理、系统信息采集、日志文件切割
* 用户级别的定时任务:定时向互联网同步时间、定时备份系统配置文件、定时备份数据库的数据

4、定时任务时间管理

  • 定时任务格式
* * * * * user-name command to be executed
定时任务存储在/var/spool/cron/
  • Crontab配置文件的时间周期的含义
[root@oldboy ~]# vim /etc/crontab
SHELL=/bin/bash    # 执行命令的解释器
PATH=/sbin:/bin:/usr/sbin:/usr/bin    # 环境变量
MAILTO=root   # 邮件发给谁

# 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,mo
n,tue,wed,thu,fri,sat
# 周

# * 表示任意的(分、时、月、周)时间都执行
# - 表示一个时间范围,如5-7点
# ,表示分隔时段,如6,0,4表示周六、日、四
# /1 表示每隔n单位时间,如*/10 每十分钟
  • crontab的时间规范
00 02 * * * ls      #每天的凌晨2点整执行
00 02 1 * * ls      #每月的1日的凌晨2点整执行
00 02 14 2 * ls     #每年的2月14日凌晨2点执行
00 02 * * 7 ls      #每周天的凌晨2点整执行
00 02 * 6 5 ls      #每年的6月周五凌晨2点执行
00 02 14 * 7 ls     #每月14日或每周日的凌晨2点都执行
00 02 14 2 7 ls     #每年的2月14日或每年2月的周天的凌晨2点执行   
*/10  02 * * * ls   #每天凌晨2点,每隔10分钟执行一次
* * * * *  ls       #每分钟都执行
00 00 14 2 *  ls    #每年2月14日的凌晨执行命令 
*/5 * * * *  ls     #每隔5分钟执行一次
00 02 * 1,5,8 * ls  #每年的1月5月8月凌晨2点执行
00 02 1-8 * *  ls    #每月1号到8号凌晨2点执行
0 21 * * * ls       #每天晚上21:00执行
45 4 1,10,22 * * ls #每月1、10、22日的4:45执行
45 4 1-10 * * l     #每月1到10日的4:45执行
3,15 8-11 */2 * * ls #每隔两天的上午8点到11点的第3和第15分钟执行
0 23-7/1 * * * ls   #晚上11点到早上7点之间,每隔一小时执行
15 21 * * 1-5 ls    #周一到周五每天晚上21:15执行
  • crontab编写定时任务
参数 含义
-e 编辑定时任务
-l 查看定时任务
-r 删除定时任务
-u 指定其他用户

5、定时任务编写实践

  • 使用root用户每一分钟执行一次实践同步
[root@oldboy ~]# ntpdate time.windows.com &>/dev/null   #同步时间
#配置定时任务
[root@oldboy ~]# crontab -e -u root
[root@oldboy ~]# crontab -l -u root
# 同步时间
*/1 * * * * ntpdate time.windows.com &>/dev/null

6、crond注意事项

* 给定时任务注释
* 将需要定期执行的任务写入shell脚本中,避免直接使用命令无法执行的情况
* 定时任务的结尾一定要有&>dev/null或者将结果追加重定向2>>/tmp/data.log文件
* 注意有些命令是无法成功执行的echo '"123" >> /tmp/test.log &>/dev/null
* 如果一定要是用命令,必须使用绝对路径

7、crond如何备份

1) 通过查找/var/log/cron中执行的记录,去推算任务执行的时间
2) 定时的备份/var/spool/cron/{usernmae}

8、crond如何拒绝某个用户使用

#1.使用root将需要拒绝的用户加入/etc/cron.deny
[root@xuliangwei ~]# echo "xuliangwei" >> /etc/cron.deny

#2.登陆该普通用户,测试是否能编写定时任务
[oldboy@xuliangwei ~]$ crontab -e
You (xuliangwei) are not allowed to use this program (crontab)
See crontab(1) for more information

你可能感兴趣的:(day23 - 定时任务)