码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 定时任务 crontabs

时间:2019-07-20 09:23:55      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:mic   unit   crontab   pre   启动服务   mct   inux   开机   kconfig   

技术图片

安装 crontab

yum install crontabs

centos7 自带了我没有手动去装

启动/关闭

service crond start // 启动服务
service crond stop // 关闭服务
service crond restart // 重启服务
service crond reload // 重新载入配置

查看 crontab 服务是否已设置为开机启动

systemctl list-unit-files | grep enable | grep crond

将 crontab 加入开机自动启动

chkconfig crond on
// 或者
systemctl enable crond.service

查看 crontab 状态

service crond status // 查看crontab服务状态

编写定时任务

  • 命令格式
min hour day month dayofweek command
 分  时   天    月    星期几      命令

? min:每个小时的第几分钟执行该任务;取值范围0-59

? hour:每天的第几个小时执行该任务;取值范围0-23

? day:每月的第几天执行该任务;取值范围1-31

? month:每年的第几个月执行该任务;取值范围1-12

? dayofweek:每周的第几天执行该任务;取值范围0-6,0表示周末

? command:指定要执行的命令

  • 编辑命令两种方式

    1. 在命令行输入: crontab -e 然后添加相应的任务,wq存盘退出
    2. 直接编辑/etc/crontab 文件,即vi /etc/crontab,添加相应的任务
  • 时间格式

? * :表示任意的时刻;如小时位 * 则表示每个小时

? n :表示特定的时刻;如小时位 5 就表示5时

? n,m :表示特定的几个时刻;如小时位 1,10 就表示1时和10时

? n-m :表示一个时间段;如小时位 1-5 就表示1到5点

? /n : 表示每隔多少个时间单位执行一次;如小时位 /1 就表示每隔1个小时执行一次命令,也可以写成 1-23/1

小栗子

* 1 * * * ~/clear_cache.sh :从 1:00 到 1:59 每隔1分钟执行一次脚本
0 * * * * ~/clear_cache.sh :每个小时的 0 分钟执行一次脚本
*/10 * * * * ~/clear_cache.sh :每隔10分执行一次脚本

清理系统cache的脚本

代码:
vim ~/clear_cache_logs.txt
sudo sysctl -w vm.drop_caches=3
sudo sysctl -w vm.drop_caches=1
echo `date -R` >> ~/clear_cache_logs.txt
free -lh >> ~/clear_cache_logs.txt

清理内存 cache ,并将清理时间和内存剩余情况日志输入到~/clear_cache_logs.txt文件中,方便查看,可以结合crontab做定时清理内存cache的定时任务。

Linux 定时任务 crontabs

标签:mic   unit   crontab   pre   启动服务   mct   inux   开机   kconfig   

原文地址:https://blog.51cto.com/13576852/2421716

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!