定时任务
定时任务介绍
# 什么是crond
crond就是计划任务,类似于我们平时生活中的闹钟,定点执行。
# crond程序为开机自动启动
[root@moban ~]# systemctl is-enabled crond
enabled
[root@moban ~]# ps -ef|grep [c]rond
root 537 1 0 05:35 ? 00:00:00 /usr/sbin/crond -n
定时任务 的使用场景
# 1.系统级别的定时任务
临时文件清理
系统信息采集 巡检 内存、磁盘、CPU、服务、端口
日志文件切割
## 2.用户级别的定时任务
定时向互联网同步时间
定时备份系统配置文件
定时备份数据库的数据
## 巡检脚本
内存、磁盘、CPU、服务、端口
1.内存 ----- free
[root@moban ~]# free -h
total used free shared buff/cache available
Mem: 1.9G 215M 1.1G 9.5M 625M 1.6G
Swap: 1.0G 0B 1.0G
total --- 总内存 buff ---- 缓冲区
used --- 已使用 cache --- 缓存区
free --- 空闲的 available --- 可用内存
shared -- 共享内存
2.磁盘 ---- df -h
[root@moban ~]# df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 980M 0 980M 0% /dev
tmpfs 991M 0 991M 0% /dev/shm
tmpfs 991M 9.5M 981M 1% /run
tmpfs 991M 0 991M 0% /sys/fs/cgroup
/dev/sda3 8.6G 1.8G 6.8G 21% /
/dev/sda1 497M 125M 373M 25% /boot
tmpfs 199M 0 199M 0% /run/user/0
3.cpu ---- top -n1
[root@moban ~]# top -n1
top - 14:52:51 up 9:17, 2 users, load average: 0.00, 0.01, 0.05
Tasks: 94 total, 1 running, 93 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.0 us, 0.0 sy, 0.0 ni,100.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
KiB Mem : 2027868 total, 1165496 free, 221540 used, 640832 buff/cache
KiB Swap: 1048572 total, 1048572 free, 0 used. 1646312 avail Mem
4.服务 --- systemctl list-units
[root@moban ~]# systemctl list-units |grep ssh
sshd.service loaded active running OpenSSH server daemon
5.端口 --- netstat -lntup
[root@moban ~]# netstat -lntup
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 855/sshd
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 1009/master
tcp6 0 0 :::22 :::* LISTEN 855/sshd
tcp6 0 0 ::1:25 :::* LISTEN 1009/master
巡检内容 |
命令 |
内存 |
free -h |
cpu |
top -n1 |
端口 |
netstat -lntup |
磁盘 |
df -h |
服务 |
sysytemctl list-units |
定时任务语法(最小到分钟)
## 定时任务配置文件
[root@localhost ~]# cat /etc/crontab
[root@moban ~]# cat /etc/crontab
SHELL=/bin/bash # 定时任务的语法
PATH=/sbin:/bin:/usr/sbin:/usr/bin # 定时任务的环境变量
MAILTO=root # 右键发给谁(默认是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,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
You have new mail in /var/spool/mail/root
# * * * * * user-name command to be executed
分 时 日 月 周 用户名(省略) 可执行的命令
00 02 * * * ls # 每天凌晨两点整执行 ls 命令
00 02 1 * * ls # 每月的1号凌晨两点执行 ls 命令
00 02 14 2 * ls # 每年的2月14号凌晨2点执行 ls 命令
00 02 * * 7 ls # 每周周日凌晨2点执行 ls 命令
00 02 * 6 5 ls # 每个6月份的周五凌晨2点执行 ls 命令
00 02 14 * 7 ls # 每个月的14号恰巧是周日时凌晨2点执行 ls 命令
00 02 14 2 7 ls # 每年2月14日恰巧是周日的凌晨2点执行 ls 命令
*/10 02 * * * ls # 每天凌晨2点开始每隔10分钟执行一次 ls 命令
* * * * * ls # 每分钟执行一次ls命令
*/1 * * * * ls # 每分钟执行一次ls命令
########## *指全部时间 ##########
crontab命令选项
-e 编辑定时任务 ---- edit
-l 查看定时任务 ---- look
-u 指定用户查看定时任务 ---- user
-r 清空所有定时任务 ---- remove
## 存储位置 ------ 需要定期手动备份
[root@moban ~]# ll /var/spool/cron/
total 4
-rw-------. 1 root root 53 May 6 11:10 root
例子:每一分钟同步一下时间
[root@moban ~]# crontab -e
* * * * * /usr/sbin/ntpdate pool.ntp.org &>/etc/null
需要安装ntpdate 软件包 后面还需要一个校验时间的网站
ntpdate pool.ntp.org
# 注意:
1)命令绝对路径
2)输出定向到空
3)定时任务加注释
## 每天做备份,将/etc目录打包为:2024-05-06_hostname_etc.tar.gz
[root@web01 /]# cd / && tar zcf /tmp/$(date +%F)_$(hostname -s)_etc.tar.gz etc (报错)
[root@web01 ~]# vi /opt/backup.sh (写入脚本中)
#!/bin/bash
cd / && tar zcf /tmp/$(date +%F)_$(hostname -s)_etc.tar.gz etc
## 拒绝用户使用定时任务
[root@web01 ~]# echo 'username' > /etc/cron.deny
## 定时任务日志记录 --- /var/log/cron
[root@moban ~]# tail -f /var/log/cron
May 6 17:11:01 moban CROND[8592]: (root) CMD (/usr/sbin/ntpdate pool.ntp.org &>/dev/null)
May 6 17:12:01 moban CROND[8608]: (root) CMD (/usr/sbin/ntpdate pool.ntp.org &>/dev/null)
May 6 17:12:10 moban crontab[8621]: (root) BEGIN EDIT (root)
May 6 17:13:01 moban CROND[8635]: (root) CMD (/usr/sbin/ntpdate pool.ntp.org &>/dev/null)
May 6 17:13:18 moban crontab[8621]: (root) REPLACE (root)
May 6 17:13:18 moban crontab[8621]: (root) END EDIT (root)
May 6 17:14:01 moban crond[537]: (root) RELOAD (/var/spool/cron/root)
May 6 17:14:02 moban CROND[8640]: (root) CMD (/usr/sbin/ntpdate pool.ntp.org &>/dev/null)
May 6 17:15:01 moban CROND[8656]: (root) CMD (/usr/sbin/ntpdate pool.ntp.org &>/dev/null)
May 6 17:16:01 moban CROND[8704]: (root) CMD (/usr/sbin/ntpdate pool.ntp.org &>/dev/null)
## 时间的格式化输入
%F:年月日
%Y:year 年
%m:mouth 月
%d:day 日
%H:hour时
%M:minute分
%S:seconds秒
crontab选项 |
作业 |
-e |
添加定时任务 |
-l |
查看定时任务 |
-u |
查看指定用户的定时任务 |
-r |
删除所有定时任务也 |
时间格式化输入-命令 |
作业 |
$(date +%F) |
年-月-日 |
$(date +%T) |
时:分:秒 |
$(date +%Y) |
年 |
$(date +%m) |
月 |
$(date +%d) |
日 |
$(date +%H) |
时 |
$(date +%M) |
分 |
$(date +%S) |
秒 |
$(date +%Y-%m-%d---%H:%M:%S) |
年-月-日---时:分:秒 |
crontab文件配置文件所在 |
作用 |
/var/spool/cron/ |
定时任务所在位置(注意备份) |
/etc/cron.deny |
拒绝用户使用定时任务的文件(直接写在里面即可) |
/var/log/cron |
定时任务日志 tail -f 可以监控 |
定时任务调试思路
1.crond调试
1) 调整任务每分钟执行的频率, 以便做后续的调试。
2) 如果使用cron运行脚本,请将脚本执行的结果写入指定日志文件, 观察日志内容是否正常。
3) 命令使用绝对路径, 防止无法找到命令导致定时任务执行产生故障。
4) 通过查看/var/log/cron日志,以便检查我们执行的结果,方便进行调试。
2.crond编写思路
1.手动执行命令,然后保留执行成功的结果。
2.编写脚本
脚本需要统一路径/scripts
脚本内容复制执行成功的命令(减少每个环节出错几率)
脚本内容尽可能的优化, 使用一些变量或使用简单的判断语句
脚本执行的输出信息可以重定向至其他位置保留或写入/dev/null
3.执行脚本
使用bash命令执行, 防止脚本没有增加执行权限(/usr/bin/bash)
执行脚本成功后,复制该执行的命令,以便写入cron
4.编写计划任务
加上必要的注释信息, 人、时间、任务
设定计划任务执行的周期
粘贴执行脚本的命令(不要手敲)
5.调试计划任务
增加任务频率测试
检查环境变量问题
检查crond服务日志
定时任务发送邮件
如何配置邮件
# 1.安装发送邮件的工具
[root@web01 ~]# yum install -y mailx
# 2.配置邮箱
[root@web01 ~]# vi /etc/mail.rc
set from=你的qq邮箱
set smtp=smtps://smtp.qq.com:465
set smtp-auth-user=你的qq邮箱
set smtp-auth-password=#客户端授权码
set smtp-auth=login
set ssl-verify=ignore
set nss-config-dir=/etc/pki/nssdb/
## 发送邮件
[root@web01 ~]# echo '邮件内容' |mail -s '邮件标题' [email protected]
[root@web01 ~]# cat /etc/passwd|mail -s 'test' [email protected]
## 需要生成smtp认证码