1.系统级别的定时任务
2.用户级别的定时任务
# 安装时间同步的命令 yum install -y ntpdate ntpdate(时间同步服务器) [root@oldboy /tmp]# ntpdate time1.aliyun.com 1 Jul 18:09:20 ntpdate[3141]: adjust time server 203.107.6.88 offset 0.001328 sec
命令的环境变量
[root@oldboy ~]# echo $PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
配置文件
[root@oldboy /tmp]# vim /etc/crontab # 定时任务中,指定bash shell SHELL=/bin/bash # 在PATH路径中的命令可以直接写不用加绝对路径 PATH=/sbin:/bin:/usr/sbin:/usr/bin # 将定时任务输出的结果,发送邮件给root 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,mon,tue,wed,thu,fri,sat # | | | | | # * * * * * user-name command to be executed 分 时 日 月 周
注意事项
crond如何备份呢
crond如何拒绝某个用户使用
# 1.使用root将需要拒绝的用户加入/etc/cron.deny [root@zls ~]# echo "oldboy" >> /etc/cron.deny #2.登陆该普通用户,测试是否能编写定时任务 [oldboy@oldboy ~]$ crontab -e You (oldboy) are not allowed to use this program (crontab) See crontab(1) for more information
## 定时任务的相关命令 crontab -e:edit 编辑 -l:list 查看 -r:删除所有的定时任务 -u:指定用户创建定时任务或者查看定时任务,或者删除定时任务 ## 编辑定时任务 [root@oldboy /tmp]# crontab -e # Create By:lidi Time:2021-07-01 Name: 3 mins ntp time */3 * * * * /usr/sbin/ntpdate time1.aliyun.com &>/dev/null ## crontab日志文件 [root@oldboy /tmp]# tail -f /var/log/cron ## 定时任务文件所在位置 [root@oldboy /tmp]# cat /var/spool/cron/root # Create By:lidi Time:2021-07-01 Name: 3 mins ntp time */3 * * * * /usr/sbin/ntpdate time1.aliyun.com &>/dev/null
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 * * ls #每月的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执行
1.crond调试
2.crond编写思路
yum install -y mailx # 编辑右键的配置文件 [root@oldboy /tmp]# vim /etc/mail.rc
配置邮箱发邮件
#编辑邮件配置文件 [root@oldboys ~]# vim /etc/mail.rc #发件人 set from=295770347@qq.com #邮件服务器 set smtp=smtp.qq.com #发件人用户名 set smtp-auth-user=295770347@qq.com #发件人密码(QQ邮箱不可以使用密码,只能使用授权码) set smtp-auth-password=xxx #登录方式 set smtp-auth=login #邮件服务器协议及端口 set smtp=smtps://smtp.qq.com:465 #忽略证书 set ssl-verify=ignore #指定证书位置 set nss-config-dir=/root/.certs #创建证书目录 mkdir -p /root/.certs #进入证书目录 cd /root/.certs #获取证书 echo -n | openssl s_client -connect smtp.qq.com:465 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/.certs/qq.crt certutil -A -n "GeoTrust SSL CA" -t "C,," -d ~/.certs -i ~/.certs/qq.crt certutil -A -n "GeoTrust Global CA" -t "C,," -d ~/.certs -i ~/.certs/qq.crt certutil -L -d /root/.certs certutil -A -n "GeoTrust SSL CA - G3" -t "Pu,Pu,Pu" -d ~/.certs -i ~/.certs/qq.crt
echo '这是一封测试邮件' |mail -s 标题 295770347@qq.com ## 创建存放情书的目录 [root@oldboy /tmp]# mkdir /opt/loveletter ## 写发情书的脚本 [root@oldboy /tmp]# vim qingshu.sh #!/bin/bash letter=`ls -1 /opt/loveletter/|head -1` for qq in `cat /opt/qq.txt`;do cat /opt/loveletter/$letter|mail -s 'this is a love letter' $qq done rm -f /opt/loveletter/$letter ## 写定时任务 [root@oldboy /tmp]# crontab -e # send love letter * * * * * /bin/sh /tmp/qingshu.sh &>/dev/null