Home Backend Development PHP Tutorial Linux uses crontab to implement PHP execution plan scheduled tasks_PHP tutorial

Linux uses crontab to implement PHP execution plan scheduled tasks_PHP tutorial

Jul 13, 2016 am 10:30 AM
crontab scheduled tasks

First, let’s talk about cron, which is a scheduled execution tool under Linux. Users other than root can use the crontab tool to configure cron tasks. All user-defined crontabs are saved in the /var/spool/cron directory and executed using the identity of the user who created them. To create a crontab entry as a user, log in as that user, and then type the crontab -e command to edit the user's crontab. This file uses the same format as /etc/crontab. When the changes to the crontab are saved, the crontab file is saved according to the username and written to the file /var/spool/cron/username. The cron daemon checks the /etc/crontab file, etc/cron.d/ directory, and /var/spool/cron directory for changes every minute. If changes are found, they are loaded into memory. This way, you don't have to restart the daemon when a crontab file changes.

Install crontab:

yum install crontabs

Instructions:
/sbin/service crond start //Start the service
/sbin/service crond stop //Close the service
/sbin/service crond restart //Restart the service
/sbin/ service crond reload //Reload configuration

View crontab service status: service crond status

Manually start the crontab service: service crond start

Check whether the crontab service has been set to start at boot, execute the command: ntsysv

Add automatic startup at boot:
chkconfig –level 35 crond on

crontab command:

Function description: Set timer.

Syntax: crontab [-u ][configuration file] or crontab [-u ][-elr]

Additional explanation: cron is a resident service that provides a timer function, allowing users to execute preset instructions or programs at a specific time. As long as the user can edit the timer configuration file, the timer function can be used. The configuration file format is as follows:
Minute Hour Day Month DayOFWeek Command

Parameters:
-e Edit the timer settings for this user.
-l List the timer settings for this user.
-r Delete the timer settings for this user.
-u Specifies the user name to set the timer.

crontab format:

Basic format:

Minutes Hours Days Months Weeks Commands

*                                                    

The first column represents minutes 1 to 59. Each minute is represented by * or */1

The second column represents hours 1 to 23 (0 represents 0 o'clock)
The third column represents dates 1 to 31
The 4th column represents the month 1~12
The 5th column identifies the week 0~6 (0 means Sunday)
The 6th column represents the command to be run

Remember the meanings of several special symbols:

“*” represents a number within the value range,
“/” represents “every”,
“-” represents from a certain number to a certain numbers,
"," separates several discrete numbers

# Use the hash sign to prefix a comment

# +————- minute (0 – 59)
# | +————- hour (0 – 23)
# | | +——- day of month (1 – 31)
# | | | +——- month (1 – 12)
# | | | | +——- day of week (0 – 7 ) (Sunday=0 or 7)
# | | | | |
# * * * * * command to be executed

A few examples of crontab are as follows:

(1) First example.

30 21 * * * /etc/init.d/nginx restart

Restart nginx at 21:30 every night.

(2) The second example, which is the example tested in this tutorial

* * * * * /usr/bin/php -f /root/test.php >> test.log

Execute the /root/test.php file every minute and output the results to test.log.

After completing the above basic work, let’s take a look at how to use crontab to execute PHP scripts regularly:

(1) I created a new test.php file under /root with the following content:

Copy code The code is as follows:
            #!/usr/bin/php -q
echo date('Y-m-d H:i:s')."from http://www.phpddt.com n";
?>

Note: You can use whereis php to find the location of the php execution file.

(2) Then crontab -e writes the following shell:

Copy code The code is as follows:
* * * * * /usr/bin/php -f /root/test. php>> test.log

Note: test.php must be an executable file: chmod +x test.php

The test results are normal, the screenshot is as follows:

Linux uses crontab to implement PHP execution plan scheduled tasks_PHP tutorial

Of course you can use crontab -e to continue adding tasks. You can see a root file under /var/spool/cron.
Use Windows to schedule tasks directly under Windows, and just open the web page through bat. It is not copied like Linux.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/768125.htmlTechArticleFirst let’s talk about cron, which is a scheduled execution tool under Linux. Users other than root can use the crontab tool to configure cron tasks. All user-defined crontabs are saved in...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Do you know some reasons why crontab scheduled tasks are not executed? Do you know some reasons why crontab scheduled tasks are not executed? Mar 09, 2024 am 09:49 AM

Summary of some reasons why crontab scheduled tasks are not executed. Update time: January 9, 2019 09:34:57 Author: Hope on the field. This article mainly summarizes and introduces to you some reasons why crontab scheduled tasks are not executed. For everyone Solutions are given for each of the possible triggers, which have certain reference and learning value for colleagues who encounter this problem. Students in need can follow the editor to learn together. Preface: I have encountered some problems at work recently. The crontab scheduled task was not executed. Later, when I searched on the Internet, I found that the Internet mainly mentioned these five incentives: 1. The crond service is not started. Crontab is not a function of the Linux kernel, but relies on a cron.

How to use Systemd and Crontab to implement parallel execution of tasks in Linux systems How to use Systemd and Crontab to implement parallel execution of tasks in Linux systems Sep 26, 2023 pm 06:37 PM

How to use Systemd and Crontab to implement parallel execution of tasks in a Linux system. In a Linux system, parallel execution of tasks is one of the important means to improve system efficiency and performance. This article will introduce how to use Systemd and Crontab tools to implement parallel execution of tasks in a Linux system, and provide specific code examples. 1. Introduction to Systemd Systemd is a tool used to manage the startup process and service management of Linux systems. via configuration

ThinkPHP6 scheduled task scheduling: scheduled task execution ThinkPHP6 scheduled task scheduling: scheduled task execution Aug 12, 2023 pm 03:28 PM

ThinkPHP6 scheduled task scheduling: scheduled task execution 1. Introduction In the process of web application development, we often encounter situations where certain repetitive tasks need to be executed regularly. ThinkPHP6 provides a powerful scheduled task scheduling function, which can easily meet the needs of scheduled tasks. This article will introduce how to use scheduled task scheduling in ThinkPHP6, and provide some code examples to help understand. 2. Configure scheduled tasks, create scheduled task files, and create a comman in the app directory of the project.

Python implements automatic page refresh and scheduled task function analysis for headless browser collection applications Python implements automatic page refresh and scheduled task function analysis for headless browser collection applications Aug 08, 2023 am 08:13 AM

Python implements automatic page refresh and scheduled task function analysis for headless browser collection applications. With the rapid development of the network and the popularization of applications, the collection of web page data has become more and more important. The headless browser is one of the effective tools for collecting web page data. This article will introduce how to use Python to implement the automatic page refresh and scheduled task functions of a headless browser. The headless browser adopts a browser operation mode without a graphical interface, which can simulate human operation behavior in an automated way, thereby enabling the user to access web pages, click buttons, and fill in information.

How to solve the pitfalls of commenting crontab files and crontab executing sh in Linux How to solve the pitfalls of commenting crontab files and crontab executing sh in Linux May 15, 2023 pm 09:58 PM

Linux annotation crontab files and crontab execution sh pitfalls. It turns out that many crontabs are written under Linux to perform certain tasks regularly. Now there are the following requirements: Requirement: It is to annotate certain crontab tasks. Method: Just add the crontab to be canceled. Just add '#' before the task. e.g.54**sunecho"runat5after4everysunday"Comment: #54**sunecho"runat5after4everysunday"It's that simple. Encounter pit 1, look at the following example recently

How to use PHP to develop a scheduled refresh function for web pages How to use PHP to develop a scheduled refresh function for web pages Aug 17, 2023 pm 04:25 PM

How to use PHP to develop a scheduled refresh function for web pages. With the development of the Internet, more and more websites need to update display data in real time. Refreshing the page in real time is a common requirement, which allows users to obtain the latest data without refreshing the entire page. This article will introduce how to use PHP to develop a scheduled refresh function for web pages and provide code examples. The simplest way to implement scheduled refresh using Meta tag is to use HTML Meta tag to refresh the page regularly. In HTML<head>

How to use scheduled tasks in FastAPI to perform background work How to use scheduled tasks in FastAPI to perform background work Jul 28, 2023 pm 02:22 PM

How to use scheduled tasks in FastAPI to perform background work. With the rapid development of Internet applications, many applications have some background tasks that need to be executed regularly, such as data cleaning, email sending, backup, etc. In order to solve this problem, we can use scheduled tasks to automatically execute background work. In this article, we will introduce how to use scheduled tasks in the FastAPI framework to perform background work. FastAPI is a modern, fast (high-performance) web framework mainly used for building APIs. it has

How to perform task scheduling and scheduled tasks in PHP? How to perform task scheduling and scheduled tasks in PHP? May 12, 2023 pm 06:51 PM

In web development, many websites and applications need to perform certain tasks regularly, such as cleaning up junk data, sending emails, etc. In order to automate these tasks, developers need to implement task scheduling and timed task functions. This article will introduce how to implement task scheduling and timed tasks in PHP, as well as some commonly used third-party libraries and tools. 1. Task Scheduling Task scheduling refers to executing certain tasks according to specified times or events. In PHP, cron timer or similar mechanism can be used to implement task scheduling. Typically, task scheduling

See all articles