[SOLVED] Backup schlägt fehl

112marv

New Member
Aug 7, 2020
3
1
3
35
Hallo,
ich habe seit einiger Zeit das Problem, dass die Backups eines Containers fehlschlagen. Das hat aber mal funktioniert.
Ich führe die Backups täglich auf einem NAS (per NFS eingebunden) aus. Bei den anderen Containern funktioniert es.

Anbei mal der Ausschnitt aus dem Task viewer. So richtig schlau werde ich daraus leider nicht.
Code:
()
INFO: starting new backup job: vzdump 103 --mode snapshot --node Proxmox --compress zstd --storage NAS --remove 0
INFO: Starting Backup of VM 103 (lxc)
INFO: Backup started at 2020-12-10 11:09:21
INFO: status = running
INFO: CT Name: Nextcloud
INFO: including mount point rootfs ('/') in backup
INFO: excluding device mount point mp1 ('/mnt/USB-Drive-1TB') from backup (not a volume)
INFO: excluding device mount point mp2 ('/mnt/USB-Drive-Backup') from backup (not a volume)
INFO: found old vzdump snapshot (force removal)
zfs error: could not find any snapshots to destroy; check snapshot names.
INFO: backup mode: snapshot
INFO: ionice priority: 7
INFO: create storage snapshot 'vzdump'
INFO: creating vzdump archive '/mnt/pve/NAS/dump/vzdump-lxc-103-2020_12_10-11_09_21.tar.zst'
INFO: tar: ./var/log/journal/b354c482f7cc342776f020ee5ea440c3/system@9534a0f67f8a4ab2a95f9d1c51802f4e-0000000000017c45-0005b04b8c0304b3.journal: Read error at byte 41549824, while reading 512 bytes: Input/output error
INFO: Total bytes written: 7569602560 (7.1GiB, 8.6MiB/s)
INFO: tar: Exiting with failure status due to previous errors
INFO: cleanup temporary 'vzdump' snapshot
ERROR: Backup of VM 103 failed - command 'set -o pipefail && tar cpf - --totals --one-file-system -p --sparse --numeric-owner --acls --xattrs '--xattrs-include=user.*' '--xattrs-include=security.capability' '--warning=no-file-ignored' '--warning=no-xattr-write' --one-file-system '--warning=no-file-ignored' '--directory=/mnt/pve/NAS/dump/vzdump-lxc-103-2020_12_10-11_09_21.tmp' ./etc/vzdump/pct.conf ./etc/vzdump/pct.fw '--directory=/mnt/vzsnap0' --no-anchored '--exclude=lost+found' --anchored '--exclude=./tmp/?*' '--exclude=./var/tmp/?*' '--exclude=./var/run/?*.pid' ./ | zstd --rsyncable '--threads=1' >/mnt/pve/NAS/dump/vzdump-lxc-103-2020_12_10-11_09_21.tar.dat' failed: exit code 2
INFO: Failed at 2020-12-10 11:23:29
INFO: Backup job finished with errors
TASK ERROR: job errors

Habe versucht nochmal auf einer lokalen Festplatte ein Backup zu machen. Auch dieses schlägt fehl.
Code:
INFO: starting new backup job: vzdump 103 --compress zstd --node Proxmox --storage local --mode snapshot --remove 0
INFO: Starting Backup of VM 103 (lxc)
INFO: Backup started at 2020-12-10 13:55:20
INFO: status = running
INFO: CT Name: Nextcloud
INFO: including mount point rootfs ('/') in backup
INFO: excluding device mount point mp1 ('/mnt/USB-Drive-1TB') from backup (not a volume)
INFO: excluding device mount point mp2 ('/mnt/USB-Drive-Backup') from backup (not a volume)
INFO: backup mode: snapshot
INFO: ionice priority: 7
INFO: create storage snapshot 'vzdump'
INFO: creating vzdump archive '/var/lib/vz/dump/vzdump-lxc-103-2020_12_10-13_55_20.tar.zst'
INFO: tar: ./var/log/journal/b354c482f7cc342776f020ee5ea440c3/system@9534a0f67f8a4ab2a95f9d1c51802f4e-0000000000017c45-0005b04b8c0304b3.journal: Read error at byte 41549824, while reading 512 bytes: Input/output error
INFO: Total bytes written: 7583672320 (7.1GiB, 7.8MiB/s)
INFO: tar: Exiting with failure status due to previous errors
INFO: cleanup temporary 'vzdump' snapshot
ERROR: Backup of VM 103 failed - command 'set -o pipefail && tar cpf - --totals --one-file-system -p --sparse --numeric-owner --acls --xattrs '--xattrs-include=user.*' '--xattrs-include=security.capability' '--warning=no-file-ignored' '--warning=no-xattr-write' --one-file-system '--warning=no-file-ignored' '--directory=/var/lib/vz/dump/vzdump-lxc-103-2020_12_10-13_55_20.tmp' ./etc/vzdump/pct.conf ./etc/vzdump/pct.fw '--directory=/mnt/vzsnap0' --no-anchored '--exclude=lost+found' --anchored '--exclude=./tmp/?*' '--exclude=./var/tmp/?*' '--exclude=./var/run/?*.pid' ./ | zstd --rsyncable '--threads=1' >/var/lib/vz/dump/vzdump-lxc-103-2020_12_10-13_55_20.tar.dat' failed: exit code 2
INFO: Failed at 2020-12-10 14:11:05
INFO: Backup job finished with errors
TASK ERROR: job errors

Anbei noch die Einstellungen des Containers. Installierte Proxmox-Version: 6.3-3

Wäre super, wenn jemand helfen kann.

Vielen Dank.
 

Attachments

  • screen.PNG
    screen.PNG
    8.2 KB · Views: 14
Last edited:
INFO: tar: ./var/log/journal/b354c482f7cc342776f020ee5ea440c3/system@9534a0f67f8a4ab2a95f9d1c51802f4e-0000000000017c45-0005b04b8c0304b3.journal: Read error at byte 41549824, while reading 512 bytes: Input/output error
ich nehme mal sehr stark an, das ist der Fehler, wegen welchem das Backup fehlschlägt.

Bitte mal die Container-config und storage config posten.
Bzw. wenn möglich versuchen den container zu stoppen und `pct fsck 103` versuchen.

Falls das nicht geht würde ich mir mal das journal im container ansehen:
* einerseits ob darin ein hinweis darauf steht warum das journal-file einen IO error hat
* andererseits mal versuchen mittels `journalctl --verify` das journal zu checken

Ich hoffe das hilft
 
Hallo,
stimmt. Daran lag es. Habe irgendwie übersehen, dass es eine Datei ist.
Das Journal war anscheinend beschädigt. Ich konnte es nicht öffnen, verschieben, kopieren oder sonst was.
Habe es gelöscht und danach lief das Backup ohne Probleme.

Danke.
 
  • Like
Reactions: Stoiko Ivanov

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!