一、定时器编辑

image.png

二、定时器常用命令

命令 动作
crontab -l 查看定时任务
crontab -e 编辑定时任务

三、定时器编辑格式解释

            • sh脚本路径

{minute} {hour} {day-of-month} {month} {day-of-week} {full-path-to-shell-script}
o minute: 区间为 0 – 59
o hour: 区间为0 – 23
o day-of-month: 区间为0 – 31
o month: 区间为1 – 12. 1 是1月. 12是12月.
o Day-of-week: 区间为0 – 7. 周日可以是0或7.

四、crontab启动、停止、重新加载

  1. /sbin/service crond start //启动服务
  2. /sbin/service crond stop //关闭服务
  3. /sbin/service crond restart //重启服务
  4. /sbin/service crond reload //重新载入配置
  5. 查看crontab服务状态:
  6. service crond status
  7. 手动启动crontab服务:
  8. service crond start