1.命令详解
查看定时任务文件cat /etc/crontab
第一个 * 表示分钟:取值范围 0-59
第二个 * 表示小时:取值范围0-23
第三个 * 表示天数:取值范围1-31
第四个 * 表示月份:取值范围1-12
第五个 * 表示每周:取值范围0-6
使用(-)可以划定范围
如:0 0-3 * 脚本 表示每天0-3点整执行脚本
使用(,)可以枚举时间
如: 0,15,30,45 脚本 表示每个小时的0分,15分,45分,30分会执行脚本
使用(/)可以指定间隔
如: /8 * 脚本 表示每8小时执行脚本
linux版本(CentOS 8)
启动定时任务
service crond start
重启定时任务
service crond restart
停止定时任务
service crond stop
重新加载定时任务配置
service crond reload
查看定时任务状态
service crond status
2.示例
0 /2 /sbin/service httpd restart #每两个小时重启一次apache
50 7 /sbin/service sshd start #每天7:50开启ssh服务
0 0 1,15 fsck /home #每月1号和15号检查/home 磁盘
1 /home/bruce/backup #每小时的第一分执行/home/bruce/backup
30 6 /10 ls #每月1、11、21、31日的6:30执行一次ls命令
cd /root
touch hello
vim test.sh
#添加下面内容
#!/bin/bash
cd /root
echo "hello" >> hello
vim /etc/crontab
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
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
#每一分钟执行依次test.sh脚本,|注意命令和sh文件需要使用绝对路径
*/1 * * * * root /bin/bash /root/test.sh
#最后启动crontab
service crond start
成功!!!