「Cron(定时运行守护进程)」:修訂間差異

出自MoodleDocs
跳到:導覽、​搜尋
第32行: 第32行:
=== 找到放置你定时运行命令行的正确路径 ===
=== 找到放置你定时运行命令行的正确路径 ===


This really does depend on the system you are using and you should find and read the documentation for your platform or hosting. In most cases getting the Moodle cron to run consists of establishing the correct command (above) and then adding it, and the time to run the command, to some sort of file. This might be either through a specific user interface or by editing the file directly.
找到定时任务的放置路径和你使用的操作系统有很大的关系,请参考你的操作系统文档和主机文档。


If using the CLI version you also need to make sure that the cron process is run as the correct user. This is not an issue with the web version.
一般来说如果成功配置 Moodle 的定时任务正确运行,你需要考虑你的命令是否正确,然后将命令放置到正确的位置,希望运行任务的正确时间和一些文件。


Example... installing cron on Ubuntu/Debian Linux. Assuming logged in as root..
在进行修改的时候,你可能会有用户界面来进行编辑配置,也可能没有用户界面编辑配置,你需要使用字符环境来进行配置。


''use the crontab command to open a crontab editor window for the www-data user. This is the user that Apache (the web server) runs as on Debian based systems''
如果你使用命令行的方式来运行你的计划任务,你需要考虑用户的权限,用户是否具有正确的权限来运行这个命令,对于采用 Web 来运行的话,就没有用户权限的问题。
 
例如,在 Ubuntu/Debian Linux 系统中进行安装,你使用的是 root 用户。
 
'' www-data 用户使用 crontab 命令来打开一个 crontab 命令编辑窗口。这是应为 Apache (Web 服务器)使用这个用户来在 Debian 系统中运行''
<pre>
<pre>
$ crontab -u www-data -e
$ crontab -u www-data -e
</pre>
</pre>
''This will open an editor window. To run the cli cron script every 15 minutes, add the line:''
'' 这个将会打开一个编辑窗口。如果希望每15分钟来运行一次命令,请添加下面的内容:''
<pre>
<pre>
*/15 * * * * /usr/bin/php  /path/to/moodle/admin/cli/cron.php >/dev/null
*/15 * * * * /usr/bin/php  /path/to/moodle/admin/cli/cron.php >/dev/null
</pre>
</pre>
NOTE: the final '''>/dev/null''' sends all the output to the 'bin' and stops you getting an email every 15 minutes.
注意:命令的最后 '''>/dev/null''' 将所有命令的输出发送到'bin' 同时阻止你每 15 分钟获得一个电子邮件。


== Setting up cron on your system ==
== Setting up cron on your system ==

於 2013年8月24日 (六) 06:48 的修訂

Moodle 'cron' 守護進程是一個 PHP 的腳本,這個腳本是 Moodle 安裝的一部分,這個進程必須定時在後台運行。

Moodle cron 守護進程腳本運行不同的任務同時被計劃進行內部調度。

重要:不要嘗試忽略在你的 Moodle 站點中設置Cron(定時運行守護進程)。沒有這個守護進程,你的站點將不會完全正常工作。

一個特殊的程序(通常稱為'cron')被用來定時運行 Moodle 腳本。Moodle 的定時運行腳本可以運行發送郵件,更新 Moodle 報表,RSS,完成活動,發佈論壇消息和其他任務。因為不同的任務在 Moodle 系統中不是同時運行的,換句話說,這些任務不是同時被觸發的,而是分時被觸發的。

定時任務(運行 Moodle 腳本)是基於 Unix 系統的核心組件,這作業系統包括(Linux 和 OSX)。定時任務用戶管理所有基於時間的服務。在 Widows 中,也有類似的功能,這個功能在 Windows 中被稱為 Windows 任務計劃,這個被設置用來按照時間計劃來運行。

如果你使用的是共享主機服務,你可以諮詢你的服務管理員或者相關文檔來配置定時任務。

實際上,計劃任務包含當個命令行,這個命令行通常設置在系統中的 cron 激活列表中。在基於 Unix 的作業系統中,這個配置文件被配置在'crontab'中。

基本討論

針對你使用的作業系統,請對應查看你後面的內容,這部分僅僅討論一些的基本背景信息。

使用下面 2 步可以對守護進程進行一些有效的配置:

  1. 確定運行的正確命令行
  2. 在你的作業系統中找到正確的位置來存放這個命令

配置 Moodle cron 命令行工作

Moodle 可以使用2 個不同的方法來在你的系統中部署定時運行腳本。

下面是相關內容:

  1. 命令行腳本:命令行腳本在路徑
    /path/to/moodle/admin/cli/cron.php
    如果你有所懷疑這個是不是正確的運行腳本。需要在你的系統中運行 'PHP CLI'程序。所以最終的運行腳本如下:
    /usr/bin/php /path/to/moodle/admin/cli/cron.php
    你應該在你的機器上嘗試運行這個腳本命令來確定這個命令能正常運行。
  2. 基於 WEB 的腳本。這個命令需要從瀏覽器上來運行,你需要從瀏覽器上來訪問,訪問的地址和下面的的類似:http://your.moodle.site/admin/cron.php。你可以使用一些類似瀏覽器的命令(例如:wget)。最終的命令如下所示:
    /usr/bin/wget http://your.moodle.site/admin/cron.php
    這種運行方式的好處在於你可以在*任何*地方運行。如果你不能在你的機器上運行計劃任務,這個將會是一個非常好的方法。

找到放置你定時運行命令行的正確路徑

找到定時任務的放置路徑和你使用的作業系統有很大的關係,請參考你的作業系統文檔和主機文檔。

一般來說如果成功配置 Moodle 的定時任務正確運行,你需要考慮你的命令是否正確,然後將命令放置到正確的位置,希望運行任務的正確時間和一些文件。

在進行修改的時候,你可能會有用戶界面來進行編輯配置,也可能沒有用戶界面編輯配置,你需要使用字符環境來進行配置。

如果你使用命令行的方式來運行你的計劃任務,你需要考慮用戶的權限,用戶是否具有正確的權限來運行這個命令,對於採用 Web 來運行的話,就沒有用戶權限的問題。

例如,在 Ubuntu/Debian Linux 系統中進行安裝,你使用的是 root 用戶。

為 www-data 用戶使用 crontab 命令來打開一個 crontab 命令編輯窗口。這是應為 Apache (Web 伺服器)使用這個用戶來在 Debian 系統中運行

$ crontab -u www-data -e

這個將會打開一個編輯窗口。如果希望每15分鐘來運行一次命令,請添加下面的內容:

*/15 * * * * /usr/bin/php  /path/to/moodle/admin/cli/cron.php >/dev/null

注意:命令的最後 >/dev/null將所有命令的輸出發送到'bin'同時阻止你每 15 分鐘獲得一個電子郵件。

Setting up cron on your system

Choose the information for your server type:

Here are some more instructions for specific hosts (please check that these are up to date):

Using third party cron service

Besides using cron hosted on your own server, you may use third party cron service (usually called webcron):

  • EasyCron - A webcron service provider that eliminates the need of crontab or other task schedulers to set cron job.

Cron settings in Moodle

There are settings within Moodle that control aspects of cron operation:

Remote cron

Using the 'web based' version of cron it is perfectly ok to place the cron process on a different machine to the Moodle server. For example, the cron service on a Unix server can invoke the cron web 'page' on a Windows based Moodle server.

See also

Using Moodle forum discussions: