web-dev-qa-db-fra.com

Comment changer le temps cron.daily est exécuté sous Linux

J'ai un script à cron.daily qui court à un certain temps tous les matins. J'ai besoin de changer le temps qu'il est exécuté.

Comment changer le temps cron.daily exécute les scripts?

22
Phil_Parnili

sur le chapeau rouge 5 ou plus, ceci est contrôlé en /etc/crontab.

Les versions plus récentes utilisent /etc/anacrontab . Par défaut, cron.daily Les scripts sont exécutés à 4:02. Édition /etc/crontab modifiera ce temps.

# run-parts
01 * * * * root run-parts /etc/cron.hourly
02 4 * * * root run-parts /etc/cron.daily
22 4 * * 0 root run-parts /etc/cron.weekly
42 4 1 * * root run-parts /etc/cron.monthly

sur les systèmes Debian/Ubuntu, il est contrôlé dans /etc/crontab aussi.

Par exemple; Une installation par défaut Ubuntu 12.04:

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

Shell=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user  command
17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
25 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
#

Et dans les deux cas, vous pouvez trouver plus de détails sur la syntaxe à utiliser ici: http://linux.die.net/man/5/crontab ou en exécutant man 5 crontab sur presque tous les systèmes Linux.

24
ewwhite

en Rhel/Centos 6 et plus

# /etc/anacrontab: configuration file for anacron
# See anacron(8) and anacrontab(5) for details.

Shell=/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root

# the maximal random delay added to the base delay of the jobs

RANDOM_DELAY=45

# the jobs will be started during the following hours only

START_HOURS_RANGE=3-22

#period in days   delay in minutes   job-identifier   command
1       5       cron.daily              Nice run-parts /etc/cron.daily

7       25      cron.weekly             Nice run-parts /etc/cron.weekly

@monthly 45     cron.monthly            Nice run-parts /etc/cron.monthly
3
mohamed ahmed besha

Sur OpenSUSE, le crontab ressemble à:

Shell=/bin/sh
PATH=/usr/bin:/usr/sbin:/sbin:/bin:/usr/lib/news/bin
MAILTO=root
#
# check scripts in cron.hourly, cron.daily, cron.weekly, and cron.monthly
#
-*/15 * * * *   root  test -x /usr/lib/cron/run-crons && /usr/lib/cron/run-crons >/dev/null 2>&1

Les run-crons commande vérifie les horodaques des fichiers dans /var/spool/cron/lastrun entre autres. Lorsque l'heure depuis la dernière exécution a expiré, il exécutera à nouveau le fichier cron.

Le temps peut être influencé en touchant le fichier. Par exemple, pour la définir sur 2012-11-17 03:15:

touch -t 201211140315 /var/spool/cron/lastrun/cron.daily
1
vdboor

Si la ligne n'était pas là, cela ne résoudra rien.

Essayez de trouver où cron.daily est mentionné, avec

grep -R cron.daily /etc

Puis prenez-le de là.

0
mvds