cronatab periodic task scheduler
To perform periodic tasks, ensure that the service is running. The service name is crond; service crond start; systemctl start crond;
Configuration file
/etc/crontab
cron log file
cat /var/log/cron
crond is a daemon process used under Linux to periodically perform certain tasks or wait for processing certain events. It is similar to scheduled tasks under Windows. When the operating system is installed, this service tool will be installed by default, and The crond process will be started automatically. The crond process will regularly check whether there are tasks to be executed every minute. If there are tasks to be executed, the task will be automatically executed.
Task scheduling under Linux is divided into two categories, system task scheduling and user task scheduling.
System task scheduling: The work that the system performs periodically, such as writing cached data to the hard disk, log cleaning, etc. There is a crontab file in the /etc directory, which is the configuration file for system task scheduling.
By editing the configuration file /etc/crontab, indicate the required running time in the format of the following figure. One line corresponds to one task, and the format is as shown below.
Using the command crontab -e under the current user will create a task schedule as the current user. Different from the system task scheduling file format, there is no need to specify which user to run as.
Specify value: specify a specific number
Range value: * means every, execute the task once every this time period.
Discrete values: 10 2, 3, 4 * * *; executed once every 10 minutes at 2, 3, and 4 o'clock. (Executed 3 times in total)
Continuous range: 10 2-10 * * *; executed from 2:10 to 10:10 every day (executed 8 times in total)
Step range: /3 * *; executed 3 times per minute (i.e. executed once every 20 seconds)
Example:
10 10 /6 * *;Execute the task at 10:10 every 6 days
Date and day of the week
10 10 1-10 * 0,6 #Executed at 10:10 on the 1st to 10th of each month, or at 10:10 on Saturdays and Sundays
Example:
1 1 /6 * root echo "hello word " ; Execute the task at 1:01 every 6 days.
1 1-10/3 * * * root echo "hello word"; executed in the first minute of every 3 hours within the range of 1-10 o'clock every day
crontab -e
* * * * * /bin/echo "`date +\%F \%H:\%M:\%S`"
#The command must write the absolute path. Unless variable
is specified#If you create a new crontab under the user, % needs to be escaped
When creating a periodic task, the default editor is vi so there is no syntax highlighting. You can change the default editor to vim
through the following methods#Writing to /etc/porfile.d takes effect for all users
#Write ~/bash_profile to the current user
export EDITOP=vim
Allow specified users to create tasks
cat /etc/cron.deny #Write the user name in the file so that new tasks cannot be created, but already created tasks will still be executed
Deny the specified user to create a task
cat /etc/cron.allow #Default file does not exist
Allow and deny priority
If the allow file exists, the deny file will not take effect.
If allow is empty, deny all users
If neither allow nor deny exists, no user can create scheduled tasks
Use usleep to achieve subtle level operation
usleep 1000000; 1 second
usleep 1000; 1 millisecond
usleep 1; 1 microsecond
Use the loop body and sleep to achieve the second level. Sleep for 20 seconds during the task to be executed every minute.
The above is the detailed content of cronatab periodic task scheduler. For more information, please follow other related articles on the PHP Chinese website!

Linux performs well in servers and development environments, while Windows performs better in desktop and gaming. 1) Linux's file system performs well when dealing with large numbers of small files. 2) Linux performs excellently in high concurrency and high throughput network scenarios. 3) Linux memory management has more advantages in server environments. 4) Linux is efficient when executing command line and script tasks, while Windows performs better on graphical interfaces and multimedia applications.

Creating graphical user interface (GUI) applications is a fantastic way to bring your ideas to life and make your programs more user-friendly. PyGObject is a Python library that allows developers to create GUI applications on Linux desktops using the

Arch Linux provides a flexible cutting-edge system environment and is a powerfully suited solution for developing web applications on small non-critical systems because is a completely open source and provides the latest up-to-date releases on kernel

Due to its Rolling Release model which embraces cutting-edge software Arch Linux was not designed and developed to run as a server to provide reliable network services because it requires extra time for maintenance, constant upgrades, and sensible fi
![12 Must-Have Linux Console [Terminal] File Managers](https://img.php.cn/upload/article/001/242/473/174710245395762.png?x-oss-process=image/resize,p_40)
Linux console file managers can be very helpful in day-to-day tasks, when managing files on a local machine, or when connected to a remote one. The visual console representation of the directory helps us quickly perform file/folder operations and sav

qBittorrent is a popular open-source BitTorrent client that allows users to download and share files over the internet. The latest version, qBittorrent 5.0, was released recently and comes packed with new features and improvements. This article will

The previous Arch Linux LEMP article just covered basic stuff, from installing network services (Nginx, PHP, MySQL, and PhpMyAdmin) and configuring minimal security required for MySQL server and PhpMyadmin. This topic is strictly related to the forme

Zenity is a tool that allows you to create graphical dialog boxes in Linux using the command line. It uses GTK , a toolkit for creating graphical user interfaces (GUIs), making it easy to add visual elements to your scripts. Zenity can be extremely u


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
