[SOLVED] Cronjob in LXC Container wird nicht ausgeführt

Beliarsfire

New Member
Jan 29, 2024
2
0
1
Hallo Community,
ich habe heute einen LXC Container für cv4pve-autosnap installiert und eingerichtet. Um das ganze zu automatisieren habe ich das folgende Skript erstellt und ausführbar gemacht.

Das Skript befindet sich unter:
Code:
 /root/skripte/snaphshots.sh:

Und hat folgenden Inhalt:
Bash:
#! /bin/bash
/usr/local/bin/cv4pve-autosnap --host=192.168.177.10 --username="snapshot@pve" --password="SuperSecretPassword01" --vmid=101 snap --label="daily" --keep=5

Folgendes habe ich mit Crontab -e hinterlegt:
Bash:
# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').
#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h  dom mon dow   command
0 30 * * * /root/skripte/snapshots.sh

Da ich von einer "falschen" Uhrzeit ausgegangen bin, habe ich diese mit dem folgenden Befehl aktualisiert / angepasst:
Bash:
timedatectl set-timezone Europe/Berlin

Das Skript lässt sich als "root" auch direkt ausführen und erstellt den Snapshot für meine VM mit der ID 101 sauber und tadellos. Leider wird der Cronjob einfach nicht ausgeführt. Ich habe die "Zeiten" für Testzwecke bereits mehrfach angepasst, jedoch wurde der cronjob nie gestartet.

Habt ihr hier einen Lösungsansatz? Ich habe bisher immer nur mit Ubuntu / Debian in VMs gearbeitet und hatte diese Art von Problem noch nie.
 
Last edited:
0 30 * * * /root/skripte/snapshots.sh
Das heißt zur 30ten Stunde jeden Tages. Hast du mal 0 0 * * * /root/skripte/snapshots.sh versucht damit die Snapshots jeden Tag um 00:00 gemacht werden? Ggf. auch noch einmal den cron service neustarten um sicherzustellen, dass da auch Änderungen übermommen wurden und du keine Syntax-Fehler hast.
 
Last edited:
  • Like
Reactions: Beliarsfire
Das heißt zur 30ten Stunde jeden Tages. Hast du mal 0 0 * * * /root/skripte/snapshots.sh versucht damit die Snapshots jeden Tag um 00:00 gemacht werden? Ggf. auch noch einmal den cron service neustarten um sicherzustellen, dass da auch Änderungen übermommen wurden und du keine Syntax-Fehler hast.
Danke für den Hinweis. Das war tatsächlich ein Fehler den ich beim erstellen des Posts gemacht habe, da ich dort ursprünglich eine andere Uhrzeit zu stehen hatte.

Ich habe nun festgestellt, das scheinbar der Faktor "Zeit" ein Problem ist. Ich habe den Cronjob bspw. gestern um 21:25 Uhr angesetzt. Ausgeführt wurde dieser jedoch erst um 22:25 Uhr. Scheinbar ist hier die Zeit im Container weiterhin nicht korrekt.

Ich erhalte folgenden output wenn ich nach der aktuellen Zeit des Containers frage:
Code:
# timedatectl
               Local time: Tue 2024-01-30 07:33:05 CET
           Universal time: Tue 2024-01-30 06:33:05 UTC
                 RTC time: n/a
                Time zone: Europe/Berlin (CET, +0100)
System clock synchronized: yes
              NTP service: inactive
          RTC in local TZ: no
Scheinbar bezieht sich der Cronjob auf UTC, nicht CET. Konnt ihr mir sagen, wie ich das beheben kann? Würdet ihr mir empfehlen, den NTP Service einzuschalten? Ich betreibe den Container als "Unpriviliged" Container - Könnte das die Fehlerursache sein?

EDIT: Scheinbar hat der Service Restart von cron (siehe folgenden Befehl) das Problem behoben:
Code:
sudo service cron restart

Der cronjob arbeitet nun ordnungsgemäß wie im crontab konfiguriert.
 
Last edited:

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!