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!

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

To install Laravel, follow these steps in sequence: Install Composer (for macOS/Linux and Windows) Install Laravel Installer Create a new project Start Service Access Application (URL: http://127.0.0.1:8000) Set up the database connection (if required)

Installing Git software includes the following steps: Download the installation package and run the installation package to verify the installation configuration Git installation Git Bash (Windows only)

There are many ways to customize a development environment, but the global Git configuration file is one that is most likely to be used for custom settings such as usernames, emails, preferred text editors, and remote branches. Here are the key things you need to know about global Git configuration files.
