Day-24定时任务

1、什么是定时任务

类似闹钟
Linux下面定时执行任务
备份 流量低谷期(人少的时候)
脚本/命令

2.定时任务分类

crontab(cronie) 工作必会
anacron         适用于 服务器7*24小时运行
atd             一次性的定时任务

3.crontab

系统的定时任务 配置文件:/etc/crontab
  目录
    /etc/cron.hourly      这个目录内容系统定时任务 会小时执行
    /etc/cron.daily       这个目录内容系统定时任务 会每天执行
    /etc/cron.monthly     这个目录内容系统定时任务 会月执行
    /etc/cron.weekly      这个目录内容系统定时任务 会每周执行

4.日志切割

系统定时对系统日志 进行切割(日志切割/日志轮询)防止单个日志过大
系统定时任务+logroate
[root@wxb ~]# ll /var/log/messages* /var/log/secure* /var/log/cron*
-rw------- 1 root root   4610 Apr 26 11:40 /var/log/cron
-rw------- 1 root root  17622 Apr 21 18:47 /var/log/cron-20190421
-rw------- 1 root root  26236 Apr 24 18:18 /var/log/cron-20190424
-rw------- 1 root root 673675 Apr 26 11:40 /var/log/messages
-rw------- 1 root root 254643 Apr 21 18:47 /var/log/messages-20190421
-rw------- 1 root root 808680 Apr 24 18:18 /var/log/messages-20190424
-rw------- 1 root root 122712 Apr 26 11:17 /var/log/secure
-rw------- 1 root root   3102 Apr 21 17:07 /var/log/secure-20190421
-rw------- 1 root root  44285 Apr 16 15:09 /var/log/secure-20190424

5.用户自己的定时任务

crontab -l (list 查看)
crontab -e (edit 编辑)修改当前用户的定时任务
查看和修改文件:
crontab -l        cat /var/spool/cron/root
crontab -e        vi /var/spool/cron/root
没有定时任务:
[11:53 root@oldboy ~]# crontab -l
no crontab for root
[11:55 root@oldboy ~]# crontab -e
no crontab for root - using an empty one    没有定时任务,给创建一个 

保存退出时出现更新定时任务规则:installing new crontab

"/tmp/crontab.gAm8Hw" 1L, 7C written
crontab: installing new crontab
"/tmp/crontab.gAm8Hw":1: bad minute
errors in crontab file, can't install.
Do you want to retry the same edit? 

6.定时任务格式

编写定时任务的语法:

# .---------------- 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
# |  |  |  |  |
# *  *  *  *  *  (command to be executed)
    * * * * *    (command to be executed)
    第一列:分 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
    第六列:要执行的任务命令或程序
 */1 * * * * date +%F_%T >>/tmp/time.log
> 每隔1分钟执行一次时间命令追加到time.log中
特殊符号:
> *表示 每 的意思
> -连续区间 1-10
> 00 8-23 * * * cmd
> 列举 1,2,3,4,8
> 00 1,2,3,4,8 * * * cmd
> /n n是数字
> n代表自然数字,即“每隔n单位时间”,例如:每10分钟执行一次任务可以写成

7.crond注意的事项

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

8.crond如何备份

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

9.crond如何拒绝某个用户使用

①.使用root将需要拒绝的用户加入/etc/cron.deny 
[root@wxb ~]# echo "wxb" >> /etc/cron.deny
②.登陆该普通用户,测试是否能编写定时任务 
[oldboy@wxb ~]$ crontab -e 
You (wxbi) are not allowed to use this program (crontab) 
See crontab(1) for more information

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