How to use crontab to add scheduled tasks in Linux

How to use crontab to add scheduled tasks in Linux

Preface

The Linux system is controlled by the system service crond. There are a lot of planned tasks on the Linux system, so this system service is started by default.

The crontab command is used to set instructions to be executed periodically. This command reads instructions from the standard input device and stores them in the "crontab" file for later reading and execution.

We can look at the status of the crond system service:


From here we can see that the crond service is self-starting (enabled) and running (active)

In addition, since users can set up scheduled tasks themselves, the Linux system also provides users with a command to control scheduled tasks: the crontab command.

crontab

Function: Add, query, and delete system scheduled tasks.

[root@localhost ~]# crontab [options]
Options:
-e: Edit crontab scheduled tasks
-l: Query crontab tasks
-r: Delete all crontab tasks of the current user 12345

[root@localhost ~]# crontab -e
#Enter the crontab editing interface. Will open vim to edit your work#Enter data, the basic format is:
* * * * * command12345

1.Format explanation:


Example:


2. Special Format

Example

3. Import from and export to files

#Import [root@localhost ~]# crontab filename
#Export [root@localhost ~]# crontab -l >filename1234

Example:

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of how to install Docker CE from a package under Linux
  • How to install and use Docker on Linux
  • Docker installation and configuration tutorial under Linux
  • Docker installation and usage tutorial under Linux
  • Detailed tutorial on how to install WordPress on Linux Docker
  • A simple method to implement Linux timed log deletion
  • Complete steps to build a squid proxy server in linux
  • Example explanation of alarm function in Linux
  • Simple steps to create a MySQL container with Docker
  • Install Docker on Linux (very simple installation method)

<<:  Common failures and reasons for mysql connection failure

>>:  Detailed explanation of the EXPLAIN command and its usage in MySQL

Recommend

centos 7 modify sshd | prohibit root login and sshd port script definition

1. Create a new user wwweee000 [root@localhost ~]...

Solution to the error when importing MySQL big data in Navicat

The data that Navicat has exported cannot be impo...

Echarts legend component properties and source code

The legend component is a commonly used component...

What you need to know about msyql transaction isolation

What is a transaction? A transaction is a logical...

What are the image file formats and how to choose

1. Which three formats? They are: gif, jpg, and pn...

How to install and configure Redis in CentOS7

Introduction There is no need to introduce Redis ...

Several ways to store images in MySQL database

Usually the pictures uploaded by users need to be...

A brief discussion on docker compose writing rules

This article does not introduce anything related ...

Detailed explanation of MySql slow query analysis and opening slow query log

I have also been researching MySQL performance op...

Useful codes for web page creation

<br />How can I remove the scroll bar on the...

MySQL index usage monitoring skills (worth collecting!)

Overview In a relational database, an index is a ...

Method of using MySQL system database for performance load diagnosis

A master once said that you should know the datab...

The complete usage of setup, ref, and reactive in Vue3 combination API

1. Getting started with setUp Briefly introduce t...

Detailed explanation of the frame and rules attributes of the table in HTML

The frame and rules attributes of the table tag c...