Webdevelopment
Drupal
Betriebssysteme
Design
Sonstige
Fr., 06/07/2012 - 15:55
Body
Super Tool: https://crontab.guru/every-30-minutes
- http://de.wikipedia.org/wiki/Cron
- http://www.tim-bormann.de/taskmanager-unter-linux-debian-cron/
- http://www.sysadminslife.com/linux/cronjob-unter-debian-und-ubuntu-erstellen/
- http://www.thesitewizard.com/general/set-cron-job.shtml
- http://drupal.org/cron | DRUPAL mit wget
- http://www.dominiquedecooman.com/blog/how-run-drupal-cron-cli | cli
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 * = Jede Minute
0 6,12 = täglich 6 und 12 uhr
Add new comment