Cron

Fr., 06/07/2012 - 15:55
Body

Super Tool: https://crontab.guru/every-30-minutes

General

Edit crontab

 crontab -e //current user ODER crontab -e -u www-data //crontab of user "www-data"

crontabs are here: /var/spool/cron/crontabs SAMPLE:  50 20 * * * /usr/bin/wget -O - -q -t 1 http://192.168.1.238/WORKSPACE_DRUPAL/artwaves_drupal_texturesite/cron.php

Beispiel, ausführend eines sql scriptes  * 12,14,17,20 * * * mysql --user=root --password=12345678-D dbname < /home/www-data/free_reset.sql

 

Uhrzeiten

# m h  dom mon dow   command
* = Ausführung immer (zu jeder Minute/Stunde...)
*/z = Ausführung alle z Stunden/Minuten
 

0 6 = Jede Nach um 6 Uhr. Ausführung also 1 mal am Tag

*/20 *  = Alle 20 Minuten

* */1 = jede Stunde

  1. */1 * = Jede Minute

0 6,12 = täglich 6 und 12 uhr

 

Add new comment
The content of this field is kept private and will not be shown publicly.

Plain text

  • Allowed HTML tags: <a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <drupal-entity data-*>
  • Web page addresses and email addresses turn into links automatically.
  • Lines and paragraphs break automatically.