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

linux 定时任务at与crontab

时间:2017-07-25 10:14:52      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:linux   at   定时任务   crontab   

1、at一次性任务

1.1 命令at安装

    从文件或标准输入中读取命令并在将来的一个时间执行,只执行一次。at的正常执行需要有守护进程atd.

#安装at
    yum install -y at
#启动守护进程
    service atd start 
#查看是否开机启动
    chkconfig --list|grep atd 
#设置开机启动
    chkconfig --level 235 atd on


1.2 使用

    如果不使用管道|或指定选项-f的话,at的执行将会是交互式的,需要在at的提示符下输入命令:

[root@node1 ~]# at now +2 minutes  #执行at并指定执行时刻为现在时间的后两分钟
at> echo hello world > /root/a.txt #手动输入命令并回车
at> <EOT>                #ctrl+d 结束输入
job 2 at 2017-07-24 16:08         #显示任务号及执行时间

选项-l或命令atq查询任务

[root@node1 ~]# atq
2       2017-07-24 16:21 a root

[root@node1 ~]# at  -l
2       2017-07-24 16:21 a root

到达时间后任务被执行,生成一个新文件file并保存echo的输出内容

[root@node1 ~]# cat a.txt 
hello world


at指定时间的方法:
1)hh:mm小时:分钟(当天,如果时间已过,则在第二天执行)
2)midnight(深夜),noon(中午),teatime(下午茶时间,下午4点),today,tomorrow
3)12小时计时制,时间后加am(上午)或pm(下午)
4)指定具体执行日期mm/dd/yy(月/日/年)或dd.mm.yy(日.月.年)
5)相对计时法now + n units,now是现在时刻,n为数字,units是单位(minutes、hours、days、weeks)


如明天下午2点20分执行创建一个目录

[root@node1]# at 02:20pm tomorrow
at> mkdir /root/temp/x
at> <EOT>
job 11 at Fri Dec 23 14:20:00 2016


选项-d或命令atrm表示删除任务

[root@node1]# at -d 11 #删除11号任务(上例)
[root@node1]# atq
[root@node1]#


可以使用管道|或选项-fat从标准输入或文件中获得任务

[root@node1~]# cat test.txt 
echo hello world > /root/temp/file

[root@node1~] at -f test.txt 5pm +2 days
job 12 at Sat Dec 24 17:00:00 2016

[root@node1~]# cat test.txt|at 16:20 12/23/16
job 13 at Fri Dec 23 16:20:00 2016

atd通过两个文件/etc/at.allow/etc/at.deny来决定系统中哪些用户可以使用at设置定时任务,它首先检查/etc/at.allow,如果文件存在,则只有文件中列出的用户(每行一个用户名),才能使用at;如果不存在,则检查文件/etc/at.deny,不在此文件中的所有用户都可以使用at。如果/etc/at.deny是空文件,则表示系统中所有用户都可以使用at;如果/etc/at.deny文件也不存在,则只有超级用户(root)才能使用at。

2、crontab

系统中每个用户都可以拥有自己的cron table,同atd类似,crond也有两个文件/etc/cron.allow/etc/cron.deny用来限制用户使用cron,规则也和atd的两个文件相同。


/etc/cron.deny 表示不能使用crontab 命令的用户

/etc/cron.allow 表示能使用crontab的用户。

如果两个文件同时存在,那么/etc/cron.allow 优先。

如果两个文件都不存在,那么只有超级用户可以安排作业。

每个用户都会生成一个自己的crontab 文件。这些文件在/var/spool/cron目录下


crontab -u 指定一个用户

crontab -l 列出某个用户的任务计划

crontab -r 删除某个用户的任务

crontab -e 编辑某个用户的任务


对于系统级别的定时任务,这些任务更加重要,大部分linux系统在/etc中包含了一系列与 cron有关的子目录:/etc/cron.{hourly,daily,weekly,monthly},目录中的文件定义了每小时、每天、每周、每月需要运行的脚本,运行这些任务的精确时间在文件/etc/crontab中指定。如:

[root@node1 spool]# cat /etc/crontab
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
HOME=/

# 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

# run-parts
01 * * * * root run-parts /etc/cron.hourly
02 4 * * * root run-parts /etc/cron.daily
22 4 * * 0 root run-parts /etc/cron.weekly
42 4 1 * * root run-parts /etc/cron.monthly




第一部分表示分钟(0-59),* 表示每分钟
第二部分表示小时(0-23),* 表示每小时
第三部分表示日(1-31),  * 表示每天
第四部分表示月(1-12),  * 表示每月
第五部分表示周几(0-6,0表示周日),* 表示一周中每天
第六部分表示要执行的任务


anacron的目的并不是完全替代cron,是作为cron的一个补充。anacron的任务定义在文件/etc/anacrontab中:

[root@node1 spool]# cat /etc/anacrontab 
# /etc/anacrontab: configuration file for anacron

# See anacron(8) and anacrontab(5) for details.

SHELL=/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# the maximal random delay added to the base delay of the jobs
RANDOM_DELAY=45
# the jobs will be started during the following hours only
START_HOURS_RANGE=3-22

#period in days   delay in minutes   job-identifier   command
1       5       cron.daily              nice run-parts /etc/cron.daily
7       25      cron.weekly             nice run-parts /etc/cron.weekly
@monthly 45     cron.monthly            nice run-parts /etc/cron.monthly



本文出自 “独上高楼,望尽天涯路” 博客,请务必保留此出处http://nxyboy.blog.51cto.com/10511646/1950598

linux 定时任务at与crontab

标签:linux   at   定时任务   crontab   

原文地址:http://nxyboy.blog.51cto.com/10511646/1950598

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