简介
作用: 计划任务主要是做一些周期性的任务,
目前最主要的用途是定期备份数据。
分类
Schedule one-time tasks with at.
语法格式
一次性任务计划
1.设置一个定时创建用户的任务
[root@localhost ~]# at now +1min
at> useradd uuuu
at>
CTRL+D输入完毕,提交任务
2.查询任务
[root@localhost ~]# atq
3.验证结果
[root@localhost ~]# id uuuu
查出用户信息即可
Schedule recurring jobs with cron.
简介
cron的概念和crontab是不可分割的。
crontab是一个命令,常见于Unix和Linux的操作系统之中
用于设置周期性被执行的指令。
该命令从标准输入设备读取指令,并将其存放于“crontab”文件中,以供之后读取和执行。
查看进程状态
[root@qianfeng ~]# systemctl status crond.service
[root@qianfeng ~]# ps aux |grep crond
root 550 0.0 0.0 126300 1648 ? Ss 10:05 0:00 /usr/sbin/crond -n
crond程序运行是计划任务执行的根本
cron示例
计划任务存储位置
[root@localhost ~]# ls /var/spool/cron/
管理方式
创建计划
crontab -e Edit jobs for the current user
查询计划
crontab -l List the jobs for the current user
管理员可以使用 -u username, 去管理其他用户的计划任务
删除计划
crontab -r Remove all jobs for the current users.
语法格式 Job format
.---------------- 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
说明
分 时 日 月 周 命令或脚本程序
六个部分用空格隔开
*/5 * * * * /mysql_back.sh
每五分钟执行
0 2 1,4,6 * * /mysql_back.sh
每月的1,4,6日的2点整执行
0 2 5-9 * * /mysql_back.sh
每月5日到9日的两点整执行
* * * * * /mysql_back.sh
每分钟执行
0 * * * * /mysql_back.sh
每小时的0分执行
```python
0 2 * * * /mysql_back.sh
每天两点整执行