计划任务

  • 计划任务主要是做一些周期性的任务,目前主要用途是定期备份数据

一次调度执行at

  • 语法格式:
1
2
3
4
5
at <TIMESPEC>
now +5min
teatime tomorrow (teatime is 16:00)
noon +4 days
5pm august 3 2021
  • 例1
1
2
3
4
5
6
7
8
9
10
[root@localhost ~]# systemctl start atd
[root@localhost ~]# systemctl enable atd
[root@localhost ~]# at now +1min
at> useradd xwz
at> <EOT> # Ctrl+D结束
job 1 at Thu Aug 27 15:35:00 2020
[root@localhost ~]# atq
1 Thu Aug 27 15:35:00 2020 a root
[root@localhost ~]# id xwz
uid=1000(xwz) gid=1000(xwz) 组=1000(xwz)
  • 例2
1
2
3
4
5
6
7
8
[root@localhost ~]# vi at.jobs 
touch /root/`date +%F`.txt
useradd eagleslab
[root@localhost ~]# at now +1min < at.jobs
[root@localhost ~]# ls
2020-08-27.txt anaconda-ks.cfg at.jobs
[root@localhost ~]# id eagleslab
uid=1001(eagleslab) gid=1001(eagleslab) 组=1001(eagleslab)

循环调度执行crond 用户级

  • crond在使用之前必须要启动守护进程
1
2
3
4
[root@localhost ~]# systemctl start crond
[root@localhost ~]# systemctl enable crond
[root@localhost ~]# ps aux|grep crond
root 6242 0.3 0.0 126380 1656 ? Ss 16:27 0:00 /usr/sbin/crond -n
  • crond进程每分钟会处理一次计划任务
  • 存储位置
1
[root@localhost ~]# ls /var/spool/cron
  • 管理命令
1
2
3
4
5
[root@localhost ~]# crontab -l        # 列出当前用户所有计划任务
[root@localhost ~]# crontab -r # 删除当前用户计划任务
[root@localhost ~]# crontab -e # 编辑当前用户计划任务
管理员可以使用 -u username,去管理其他用户的计划任务
[root@localhost ~]# vi /etc/cron.deny # 这个文件中加入的用户名无法使用cron
  • cron语法格式
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
分 时 日 月 星期 命令
* 表示任何数字都符合
0 2 * * * /run.sh # 每天的2点
0 2 14 * * /run.sh # 每月14号2点
0 2 14 2 * /run.sh # 每年2月14号2点
0 2 * * 5 /run.sh # 每个星期5的2点
0 2 * 6 5 /run.sh # 每年6月份的星期5的2点
0 2 2 * 5 /run.sh # 每月2号或者星期5的2点 星期和日同时存在,那么就是或的关系
0 2 2 6 5 /run.sh # 每年6月2号或者星期5的2点

*/5 * * * * /run.sh # 每隔5分钟执行一次
0 2 1,4,6 * * /run.sh # 每月1号,4号,6号的2点
0 2 5-9 * * /run.sh # 每月5-9号的2点

* * * * * /run.sh # 每分钟
0 * * * * /run.sh # 每整点
* * 2 * * /run.sh # 每月2号的每分钟

循环调度执行cron系统级

  • 临时文件的清理/tmp /var/tmp
  • 系统信息的采集 sar
  • 日志的轮转(切割) lgrotate
  • 通常不是由用户定义
  • 文件的位置
1
2
3
4
5
6
7
8
9
[root@localhost ~]# vim /etc/crontab    # 默认没有定义任何计划任务
[root@localhost ~]# ls /etc/cron.d # 定义的计划任务每个小时会执行
0hourly sysstat
[root@localhost ~]# cat /etc/cron.d/0hourly
# Run the hourly jobs
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
01 * * * * root run-parts /etc/cron.hourly # 每小时01分以root身份执行/etc/cron.hourly/目录下的所有脚本
  • crond仅仅会执行每小时定义的脚本 /etc/cron.hourly
1
2
3
4
5
6
7
8
9
10
[root@localhost ~]# ls /etc/cron.hourly/
[root@localhost ~]# cat /etc/cron.hourly/0anacron
/usr/sbin/anacron -s # anacron是用来检查是否有错过的计划任务需要被执行
[root@localhost ~]# vi /etc/anacrontab
1 5 cron.daily nice run-parts /etc/cron.daily
#每天开机 5 分钟后就检查 /etc/cron.daily 目录内的文件是否被执行,如果今天没有被执行,那就执行
7 25 cron.weekly nice run-parts /etc/cron.weekly
#每隔 7 天开机后 25 分钟检查 /etc/cron.weekly 目录内的文件是否被执行,如果一周内没有被执行,就会执行
©monthly 45 cron.monthly nice run-parts /etc/cron.monthly
#每隔一个月开机后 45 分钟检查 /etc/cron.monthly 目录内的文件是否被执行,如果一个月内没有被执行,那就执行

查看其他用户的计划任务

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
useradd test01
passwd test01

#切换用户
su test01

#随便编辑一条命令
crontab -e
* * * * * ls

su root

#指定用户名
crontab -l u test01#指定用户名
crontab -l u test01

#查看所有用户的计划任务
cat /etc/passwd | cut -f 1 -d : |xargs -I {} crontab -l -u {}