How to customize at and cron scheduled tasks in Linux

How to customize at and cron scheduled tasks in Linux

There are two types of scheduled tasks in Linux system, one is the at scheduled task which will only be executed once, and the other is the cron scheduled task which can be executed periodically.

at One-time scheduled tasks

describe

Execute a specific command (single time) at a specified time, also called a delayed action task.

usage

at time [Enter]

parameter

at -l #List single scheduled tasks at -r task id ##Delete the task with this id at -d task id ##Delete the task with this id at -m #Make the command without output generate email at -M #Make the command with output generate email at -c task id ##View the action of the task with this id at -f file ##Use the commands recorded in the file as the execution commands of the delayed task

Examples

First check the system time

[root@test ~]# date
Thu May 17 18:40:11 CST 2018

Specify a single scheduled task (delayed action)

[root@test ~]# at 18:45 ##Plan executed at 18:45 on the same day (18:45 2018-05-17)
at> date ##Scheduled task content at> shutdown -h now ##Scheduled task content at> <EOT> ##Command input ends, press Ctrl+D to exit job 10 at Thu May 17 18:45:00 2018 ##The system prompts that there is a scheduled task numbered 10

Cron periodic scheduled tasks

To use cron to schedule tasks, you need to ensure that the crond service is enabled and starts automatically at boot.

# systemctl start crond
# systemctl enable crond

describe

Maintain a periodic cron job file for each user.

usage

crontab [ -u user ] [ -l|-r|-e ]

Options

parameter usage
-u Specify the user for the scheduled task. If -u is not specified, the current user is used by default.
-l View scheduled tasks
-r Deleting a scheduled task
-e Editing a scheduled task
-i When deleting a scheduled task using -r, the user is asked to confirm the deletion

corn plan task format

Item 1 Item 2 Item 3 Item 4 Item 5 Item 6
point hour day moon week Order
00~59 00~23 1~31 1~12 1~7 action

If you need to specify a time period, you can use a hyphen (-) to indicate a continuous period of time, a comma (,) to indicate several discontinuous periods of time, an asterisk (*) to indicate all periods of time, and a division sign (/) to indicate intervals of time.

Example

[root@test ~]# crontab -e
: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : :

Cron scheduled task permissions

To prevent users from arbitrarily defining their own scheduled tasks, administrators can implement ACL access control. The control files for the at scheduled tasks are /etc/at.allow and /etc/at.deny. By default, at.llow does not exist. The control files for cron scheduled tasks are /etc/cron.allow and /etc/cron.deny. By default, cron.allow does not exist.

The above article on how Linux users can customize at and cron scheduled task execution is all I have to share with you. I hope it can give you a reference, and I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of using the at command for one-time scheduled tasks in Linux
  • Detailed explanation of how to use cron scheduled tasks in Linux
  • Brief discussion: Summary of commonly used symbols for Linux cron scheduled tasks
  • Introduction to scheduled tasks in Linux system

<<:  Simple writing of MYSQL stored procedures and functions

>>:  WeChat applet realizes taking photos and selecting pictures from albums

Recommend

HTML table tag tutorial (24): horizontal alignment attribute of the row ALIGN

In the horizontal direction, you can set the row ...

MySQL slow log online problems and optimization solutions

MySQL slow log is a type of information that MySQ...

Detailed explanation of simple html and css usage

I will use three days to complete the static page...

MYSQL subquery and nested query optimization example analysis

Check the top 100 highest scores in game history ...

SVN installation and basic operation (graphic tutorial)

Table of contents 1. What is SVN 2. Svn server an...

Sample code for implementing DIV suspension with pure CSS (fixed position)

The DIV floating effect (fixed position) is imple...

Vue3.0 handwriting magnifying glass effect

The effect to be achieved is: fixed zoom in twice...

Vue implements setting multiple countdowns at the same time

This article example shares the specific code of ...

Use the CSS border-radius property to set the arc

Phenomenon: Change the div into a circle, ellipse...

A brief analysis of adding listener events when value changes in html input

The effect to be achieved In many cases, we will ...

Using css-loader to implement css module in vue-cli

【Foreword】 Both Vue and React's CSS modular s...

Several things to note when making a web page

--Homepage backup 1.txt text 2. Scan the image 3. ...

Using group by in MySQL always results in error 1055 (recommended)

Because using group by in MySQL always results in...