Note: You are currently viewing documentation for Moodle 3.9. Up-to-date documentation for the latest stable version of Moodle may be available here: Scheduled tasks.

Scheduled tasks: Difference between revisions

From MoodleDocs
m (removed new features)
m (formatting)
(17 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Server settings}}
{{Server settings}}
==Managing scheduled tasks==
An administrator can schedule routine tasks very precisely from ''Administration > Site administration > Server > Scheduled tasks.''


 
Note that you still need to run the [[Cron|CRON scripts]] (\admin\cli\cron.php or http:\\yoursite\admin\cron.php) at regular intervals. It is recommended that the cron is run every minute.
An administrator can schedule routine tasks very precisely from ''Administration>Site administration>Server>Scheduled tasks.''
{|
 
|-
(Note that you still need to run the CRON scripts (\admin\cli\cron.php or http:\\yoursite\admin\cron.php) at regular intervals.The script is best run every minute.)
|[[File:scheduledtasks1.png|thumb|Scheduled tasks]]
 
|[[File:scheduledtasks2.png|thumb|Editing a scheduled task]]
[[File:scheduledtasks1.png]]
|}


Clicking the edit icon allows the administrator to specify the minute/hour/day/month or day of the week the task is to be run. It is also possible to reset the task to its default setting or disable it completely.
Clicking the edit icon allows the administrator to specify the minute/hour/day/month or day of the week the task is to be run. It is also possible to reset the task to its default setting or disable it completely.


[[File:scheduledtasks2.png]]
The column 'Next run' provides information on whether a plugin or a task is disabled (as well as the date that a task will next run).


==Format for scheduling tasks==
==Format for scheduling tasks==
Line 23: Line 25:
  2,5 is the second and 5th of the month, or February and May, or Tuesday and Friday.
  2,5 is the second and 5th of the month, or February and May, or Tuesday and Friday.


==See also==
==Fail delay==
<mediaplayer>http://youtu.be/zPE3WdKppJI</mediaplayer>
 
[[es:Tareas agendadas]]
If you're trying to debug a cron task, you may notice the Fail Delay becomes populated with a number. This is the time in seconds the cron will delay running the task. To sidestep this problem for development purposes, take a look at the Scheduled Tasks section here: [[Administration_via_command_line#Scheduled_tasks]].
 
==Running individual tasks==
 
To be able to run individual scheduled tasks via 'Run now' links on the scheduled tasks page, 'Allow 'Run now' for scheduled tasks' (tool_task | enablerunnow) in Site administration / Security / Site security settings should be enabled AND  'Path to PHP CLI' (pathtophp) in Site administration / Server / System paths should be set.
 
[[File:examplescheduledtasks.png]]
 
==Launching a task from CLI==
You can also launch individual task from Command Line Interface (see [[Administration_via_command_line#Scheduled_tasks|Administration via command line]]).
 
[[es:Trabajos agendados]]
[[de:Geplante Vorgänge]]
[[de:Geplante Vorgänge]]
[[fr:Tâches planifiées]]

Revision as of 10:04, 2 July 2020

Managing scheduled tasks

An administrator can schedule routine tasks very precisely from Administration > Site administration > Server > Scheduled tasks.

Note that you still need to run the CRON scripts (\admin\cli\cron.php or http:\\yoursite\admin\cron.php) at regular intervals. It is recommended that the cron is run every minute.

Scheduled tasks
Editing a scheduled task

Clicking the edit icon allows the administrator to specify the minute/hour/day/month or day of the week the task is to be run. It is also possible to reset the task to its default setting or disable it completely.

The column 'Next run' provides information on whether a plugin or a task is disabled (as well as the date that a task will next run).

Format for scheduling tasks

When typing into the fields, the format is the same as for Unix cron. Examples are as follows and are according to which field you are editing:

* is every minute, hour, day, month
*/2 is every two minutes, every two hours or every second day
2-10 is every minute between two and ten past the hour or every hour between 2 and 10 am 
0 is every Sunday
1 is every Monday or every January
2,5 is the second and 5th of the month, or February and May, or Tuesday and Friday.

Fail delay

If you're trying to debug a cron task, you may notice the Fail Delay becomes populated with a number. This is the time in seconds the cron will delay running the task. To sidestep this problem for development purposes, take a look at the Scheduled Tasks section here: Administration_via_command_line#Scheduled_tasks.

Running individual tasks

To be able to run individual scheduled tasks via 'Run now' links on the scheduled tasks page, 'Allow 'Run now' for scheduled tasks' (tool_task | enablerunnow) in Site administration / Security / Site security settings should be enabled AND 'Path to PHP CLI' (pathtophp) in Site administration / Server / System paths should be set.

examplescheduledtasks.png

Launching a task from CLI

You can also launch individual task from Command Line Interface (see Administration via command line).