Cron(Chronos ist das griechische Wort für Zeit) Jobs sind Aufgaben, die in bestimmten Zeitintervallen auf dem Server ausgeführt werden.
Cron-Jobs werden in /var/spool/cron/Benutzername gespeichert Dateien. Für Plothost Benutzer, wir haben:
root@web [/var/spool/cron]# cat plothost
MAILTO="[email protected]"
SHELL="/usr/local/cpanel/bin/jailshell"
* * * * * /plothost/public_html/test.php
root@web [/var/spool/cron]#
Wir können sehen, dass der Benutzer nur einen Cron-Job hat – die Datei test.php wird jede Minute ausgeführt.
Alternativ können Sie die crontab verwenden Befehl, um die Cron-Jobs für einen Benutzer aufzulisten. Der Befehl lautet:crontab -u Benutzername -l . Für Benutzer plothost , haben wir:
root@web [/var/spool/cron]# crontab -u plothost -l
MAILTO="[email protected]"
SHELL="/usr/local/cpanel/bin/jailshell"
* * * * * /plothost/public_html/test.php
root@web [/var/spool/cron]#
Sie finden die Cronjob-Protokolle in /var/log/cron Datei.
Um die Einträge für einen bestimmten Benutzer anzuzeigen, verwenden Sie cat cron | grep Benutzername . Zum Beispiel für den plothost Benutzer haben wir:
root@web [/var/log]# cat cron | grep plothost
May 2 09:07:29 web crontab[8185]: (plothost) LIST (plothost)
May 2 09:08:12 web crontab[8309]: (plothost) LIST (plothost)
May 2 09:08:12 web crontab[8310]: (plothost) REPLACE (plothost)
May 2 09:08:12 web crontab[8313]: (plothost) LIST (plothost)
May 2 09:09:01 web crond[29907]: (plothost) RELOAD (/var/spool/cron/plothost)
May 2 09:09:01 web CROND[8466]: (plothost) CMD (test.php)
May 2 09:10:01 web CROND[8698]: (plothost) CMD (test.php)
May 2 09:11:01 web CROND[8971]: (plothost) CMD (test.php)
root@web [/var/log]#
Wenn Sie aus irgendeinem Grund den Crond-Dienst neu starten möchten, verwenden Sie:
root@web [~]# service crond restart
Redirecting to /bin/systemctl restart crond.service
root@web [~]#
Seien Sie vorsichtig, wenn Sie mit Cron-Jobs arbeiten. Erstellen Sie eine Sicherungskopie, bevor Sie eine Cron-Job-Datei ändern.