1.111.4 Automate System Administration Tasks by Scheduling Jobs to Run in the Future Weight 4
Total Page:16
File Type:pdf, Size:1020Kb
1.111.4 Automate system administration tasks by scheduling jobs to run in the future Weight 4 1.111.4 Angus Lees Automate system administration tasks by Context Objective scheduling jobs to run in the future Introduction Weight 4 at command The cron System Linux Professional Institute Certification — 102 anacron License Of This Document Angus Lees <[email protected]> Geoff Robertson <[email protected]> Nick Urbanik <[email protected]> This document Licensed under GPL—see section 7 2005 July 1.111.4 Automate system Outline administration tasks by scheduling jobs to run in the future Weight 4 Angus Lees Context Objective Introduction at Context crontab command crontab file format The cron System Objective anacron Setting up cron for root Introduction License Of This anacron Document at command anacron configuration: Specifying the time for at anacrontab The cron System License Of This Document 1.111.4 Automate system Topic 111 Administrative Tasks [21] administration tasks by Where we are up to scheduling jobs to run in the future Weight 4 Angus Lees Context Objective 1.111.1 Manage users and group accounts and related Introduction system files [4] at command 1.111.2 Tune the user environment and system The cron System environment variables [3] anacron License Of This 1.111.3 Configure and use system log files to meet Document administrative and security needs [3] 1.111.4 Automate system administration tasks by scheduling jobs to run in the future [4] 1.111.5 Maintain an effective data backup strategy [3] 1.111.6 Maintain system time [4] 1.111.4 Automate system Description of Objective administration tasks by 1.111.4 Automate system administration tasks by scheduling jobs to run in the scheduling jobs to run in the future future Weight 4 Angus Lees Context Objective Introduction at command Candidate should be able to use cron or The cron System anacron to run jobs at regular intervals and anacron License Of This to use at to run jobs at a specific time. Task Document include managing cron and at jobs and configuring user access to cron and at services. 1.111.4 Automate system 111.4 Scheduling jobs [4] administration tasks by Key files, terms and utilities scheduling jobs to run in the future Weight 4 Angus Lees at Context crontab Objective atq Introduction at command /etc/anacrontab The cron System /etc/at.deny anacron License Of This /etc/crontab Document /etc/at.allow /etc/cron.allow /etc/cron.deny /var/spool/cron/* 1.111.4 Automate system Basically administration tasks by scheduling jobs to run in the future Weight 4 Angus Lees Context Objective Introduction at command The cron System anacron I at – Run a command once License Of This I cron – Run a command periodically Document 1.111.4 Automate system The at command administration tasks by scheduling jobs to run in the future Weight 4 Angus Lees Context at takes a time and a list of commands to run. Any output to Objective STDOUT or STDERR will be mailed to the user running at. Introduction at command Specifying the time for at The cron System anacron $ at 2pm ←- License Of This warning: commands will be executed using /bin/sh Document at> date ←- at> ^D ←- job 3 at 2002-05-08 14:00 1.111.4 Automate system The at command administration tasks by scheduling jobs to run in the future Weight 4 Angus Lees Context Objective Introduction at command The current umask, working directory and environment (except Specifying the time for at for TERM, DISPLAY and _) are saved and restored before The cron System anacron cron running the job (unlike ). License Of This Document The commands to run will be read from STDIN or from a file given with -f . 1.111.4 Automate system Example at time specifications administration tasks by scheduling jobs to run in the future Weight 4 Angus Lees Context at allows a very flexible time format. Objective Introduction at command Specifying the time for at 17:36 Run at 5:36pm today or tomorrow. The cron System 9pm May 8 Run at 9pm on May 8th. anacron License Of This noon tomorrow Run at 12pm tomorrow. Document now + 2 hours Run in 2 hours. See at(1) for more details. 1.111.4 Automate system Queued jobs administration tasks by scheduling jobs to run in the future Weight 4 Angus Lees Context Objective atq lists a user’s pending jobs. Introduction at command $ atq ←- Specifying the time for at 3 2002-05-08 14:00 a gus The cron System anacron License Of This Document $ atrm 3 ←- removes the queued job. $ at -c 3 ←- dumps the job on STDOUT. 1.111.4 crontab Automate system administration tasks by scheduling jobs to run in the future Weight 4 Angus Lees Context Objective Introduction crond is a daemon that reads everyone’s crontab at command information, spawning new tasks at the appropriate times. The cron System crontab crontab file Replace your crontab file with file. crontab file format Setting up cron for root crontab -l List your crontab. anacron crontab -r Remove your crontab. License Of This Document crontab -e Edit your crontab (with $EDITOR). 1.111.4 Automate system crontab file format administration tasks by scheduling jobs to run A sample crontab file: in the future Weight 4 0 7 1 jan * echo "sleep in, you dont feel so good" Angus Lees # gratuitous noise Context 0 17 ** mon,wed,fri wall%meeting in 5 minutes% Objective 0 9-18/2 ** mon-fri $HOME/bin/cron.bihourly Introduction Line based, hash comments, ignored blank lines, etc at command The cron System I Minute (0-59) crontab crontab file format I Hour (0-23) Setting up cron for root anacron I Day of month (1-31) License Of This I Month (1-12 or jan-dec) Document I Day of week (0-7 or sun-sat) I Step I Wildcard I Ranges I Lists See crontab(5) for: I Environment variables I Providing STDIN 1.111.4 Automate system cron from root administration tasks by scheduling jobs to run in the future Weight 4 Angus Lees A few extra issues arise when editing /etc/crontab (and similar “system” crontab files): Context Objective crontab -e /etc/crontab I Don’t use , edit directly. Introduction I A new column (after timespec, before command) gives the at command user to the command run as. The cron System crontab crontab file format I Distributions often create directories for “common” Setting up cron for root frequencies. It usually makes much more sense to place a anacron script in there, rather than adding your own crontab lines. License Of This Debian, Red Hat runs any scripts in Document /etc/cron.{daily,weekly,monthly} – but these are triggered from normal entries in /etc/crontab, so there’s no real mystery here. I /etc/cron.d/* is read in addition to /etc/crontab (they also have the extra user field). 1.111.4 anacron Automate system administration tasks by scheduling jobs to run in the future Weight 4 Angus Lees Context Objective Introduction Apparently some people turn their machines off. at command The cron System If your computer is always turned off at night (for example), anacron anacron configuration: then daily jobs which are usually scheduled to run in the wee anacrontab hours, will never be run. This is a problem. License Of This Document anacron fixes this by running any missed jobs after a reboot (or other times, like AC-on for laptops). 1.111.4 Automate system anacron configuration: anacrontab administration tasks by scheduling jobs to run in the future Weight 4 Angus Lees Context Objective Introduction Since anacron can’t use the crontab files, it has its own at command simplified /etc/anacrontab. The cron System anacron anacron configuration: If you only use the standard anacrontab /etc/cron.daily,monthly,weekly, then no further License Of This Document configuration will be necessary. Otherwise, see anacrontab(5). Note that the frequency of anacron jobs can only be specified in days. 1.111.4 Automate system Topics Covered administration tasks by scheduling jobs to run in the future Weight 4 Context Angus Lees Context Objective Objective Introduction Introduction at command The cron System at command anacron at anacron configuration: Specifying the time for anacrontab License Of This The cron System Document crontab crontab file format Setting up cron for root anacron anacron configuration: anacrontab License Of This Document 1.111.4 Automate system License Of This Document administration tasks by scheduling jobs to run in the future Weight 4 Angus Lees Context Objective Copyright c 2005, 2003 Angus Lees <[email protected]>, Introduction Geoffrey Robertson <[email protected]> and Nick Urbanik at command <[email protected]>. The cron System Permission is granted to make and distribute verbatim copies anacron License Of This or modified versions of this document provided that this Document copyright notice and this permission notice are preserved on all copies under the terms of the GNU General Public License as published by the Free Software Foundation—either version 2 of the License or (at your option) any later version..