- 30 21 * * * /etc/init.d/nginx restart
-
Every night 21
- :30Restart nginx.
-
-
-
45
- 41 ,10,22 * * /etc/init. d/nginx restart
-
Every month 1
- , 10, 22 on 4 : 45Restart nginx.
-
-
-
10
- 1 * * 6,0 /etc/init.d/nginx restart
-
Every Saturday and Sunday 1
- : 10Restart nginx.
-
-
-
0
- ,3018 -23 * * * /etc/init.d/nginx restart
-
Every day 18
- : 00 to 23 : Every between 00 30Restart nginx.
-
-
-
0
- 23 * * 6 /etc/init.d/nginx restart
- Every Saturday 11
- : 00 pm restart nginx.
-
-
-
* */1
- * * * /etc/init.d/nginx restart
- Restart nginx every hour
-
-
-
* * * /etc/init.d/nginx restart
- Restart nginx every hour between 11 and morning7
- 0
- 11 4 * mon-wed /etc/init.d/nginx restart
The - 4 of every month and every Monday to Wednesday
- 11 points Restart nginx
-
1 jan * /etc/init.d/nginx restart
- Restart nginx at 4 on January 1st
*/- 3 0 * * * * /usr/sbin/ntpdate 210.72.145.20
- Synchronize time every half hour
- Apply to thinkphp
First you have to write the function code to be executed regularly into Action. Or you can use the URL to access it and then execute it.
For example, I put the update code that periodically traverses the order every day to see if there is a transaction volume under Order/update_status.
And my project access address is www.jieqinwang.com, that is: the code execution path of this function is: http://www.jieqinwang.com/Order/update_status
After you get this path, you can go liunx went to configure cron.
crontab -e to enter the task list.
Press the I key to enter edit mode, and then add a task.
For example, if I want to execute the code I just wrote every day at 12 noon
, just add a new line 0 12 * * * * curl http://www.jieqinwang.com/Order/update_status
Then press the Esc key to exit the editing mode, then type: wq and press Enter. Save and exit.
In this way we have added a scheduled task. You can use crontab -l to check whether the task list already contains it.
The last step, because adding it like this may not take effect immediately. We just need to restart the cron service.
Restart service command: /sbin/service crond restart
Original link: http://164418960.iteye.com/blog/2170536
The above introduces the Linux Crontab command, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.