Linux中使用crond工具创建定时任务的方法
前言
- crond是一个linux下的定时执行工具(相当于windows下的scheduledtask),可以在无需人工干预的情况下定时地运行任务。crond工具提供crontab命令来设置定时任务,属于守护进程,只能精确到分钟,可以设定周期性执行Linux命令或者Shell脚本,每分钟crond都会检查是否有定时任务需要执行
- 本次实验系统为CentOS7
操作步骤
(1)检查crond工具是否安装
yumlistinstalled|grepcrontabs
若未安装,则使用如下所示命令安装
sudoyuminstallcrontabs
(2)检查crond服务是否开启由于是CentOS7所以使用systemctl命令,而非service命令
systemctlstatuscrond.service
若未开启,则使用如下所示命令开启服务
sudosystemctlstartcrond.service
(3)使用crond工具创建任务计划crontab命令使用方法
Usage: crontab[options]file crontab[options] crontab-n[hostname] Options: -udefineuser -eedituser'scrontab -llistuser'scrontab -rdeleteuser'scrontab -ipromptbeforedeleting -n sethostinclustertorunusers'crontabs -cgethostinclustertorunusers'crontabs -sselinuxcontext -x enabledebugging #注意crontab-r是删除用户的所有定时任务(慎用!)
可以通过/etc/crontab文件查看任务定义格式和设定任务执行环境
以“每分钟定时将日期写入指定文件中”为例
方法1:使用crontab命令编辑当前用户定时任务(立即生效)**
crontab-e
在编辑器中插入如下指令(注意此时不要追加用户,否则无法执行,因为此方法是直接设置当前用户的定时任务)
*/1****date>>/home/TomAndersen/currentDate
检查插入结果
[tomandersen@hadoop101bin]$crontab-l */1****date>>/home/TomAndersen/currentDate
方法2:编辑/etc/crontab文件,按照格式插入(生效较慢)**
*/1****tomandersendate>>/home/TomAndersen/currentDate
(4)检查是否设置成功
[tomandersen@hadoop101bin]$cat/home/TomAndersen/currentDate 2020年02月09日星期日18:12:01CST 2020年02月09日星期日18:13:01CST 2020年02月09日星期日18:14:01CST 2020年02月09日星期日18:15:01CST 2020年02月09日星期日18:16:02CST 2020年02月09日星期日18:17:01CST 2020年02月09日星期日18:18:01CST 2020年02月09日星期日18:19:01CST 2020年02月09日星期日18:20:01CST
总结
以上所述是小编给大家介绍的Linux中使用crond工具创建定时任务,希望对大家有所帮助!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。