服务端:crond 后台运行
# 查看crond服务端运行情况 systemctl status crond crond.service - Command Scheduler Loaded: loaded (/usr/lib/systemd/system/crond.service; enabled; vendor preset: enabled) Active: active (running) ##代表运行 systemctl start crond #启动 systemctl enable crond #开机自启动
客户端:crontab 配置工具
crontab -l 查看定时任务 crontab -e 编辑定时任务 # 定时任务语法: * * * * * 任务 分 时 日 月 周 范围: # 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 # | | | | | # * * * * * command * * * * * 任务 每分钟执行任务 1,2,3 * * * * 任务 意思:每小时的第1 2 3分钟 执行任务 1-3 * * * * 任务 意思:每小时的第1 2 3分钟 执行任务 */10 * * * * 任务 意思:每隔10分钟 执行任务 每天早晨8:30上课 30 08 * * * 上课 每周日上午9:30 上课 30 09 * * 7 上课
任务需求:每天0点备份/etc目录,按时间命名
crontab -e ## 每日备份/etc by admin for all at 20210729 #00 00 */1 * * tar -zcf /tmp/$(date +\%F)_back.tar.gz /etc # * * * * * /bin/sh /backup.sh ~ ~ ~ vim /backup.sh tar zcf /tmp/$(date +%F)_back.tar.gz /etc ~ ~ ~