Snapshot backup not working

rybka52

New Member
Dec 4, 2009
12
0
1
I'm testing ProxmoxVE 1.5 and few months ago everything was perfect.
Now suspend backup still working, but snapshot not :(
Here is log:

vzdump --quiet --snapshot --compress --storage backup --mailto xxx@xxxxx 107

107: Jun 14 18:59:01 INFO: Starting Backup of VM 107 (openvz)
107: Jun 14 18:59:01 INFO: CTID 107 exist mounted running
107: Jun 14 18:59:01 INFO: status = CTID 107 exist mounted running
107: Jun 14 18:59:01 INFO: backup mode: snapshot
107: Jun 14 18:59:01 INFO: bandwidth limit: 10240 KB/s
107: Jun 14 18:59:01 INFO: creating lvm snapshot of /dev/mapper/pve-data ('/dev/pve/vzsnap-mimban-0')
107: Jun 14 18:59:01 INFO: Logical volume "vzsnap-mimban-0" created
107: Jun 14 18:59:01 INFO: mount: wrong fs type, bad option, bad superblock on /dev/mapper/pve-vzsnap--mimban--0,
107: Jun 14 18:59:01 INFO: missing codepage or helper program, or other error
107: Jun 14 18:59:01 INFO: In some cases useful info is found in syslog - try
107: Jun 14 18:59:01 INFO: dmesg | tail or so
107: Jun 14 18:59:02 INFO: umount: /mnt/vzsnap0: not mounted
107: Jun 14 18:59:02 ERROR: command 'umount /mnt/vzsnap0' failed with exit code 1
107: Jun 14 18:59:02 INFO: Logical volume "vzsnap-mimban-0" successfully removed
107: Jun 14 18:59:02 ERROR: Backup of VM 107 failed - command 'mount -t ext3 /dev/pve/vzsnap-mimban-0 /mnt/vzsnap0' failed with exit code 32

Any sugestion would be helpfull
Thanks
 
dmesg |tail looks like this:

EXT3-fs error (device dm-7): ext3_check_descriptors: Block bitmap for group 1712 not in group (block 239075328)!
EXT3-fs: group descriptors corrupted!

Syslog:
Jun 14 18:45:29 mimban vzdump[30986]: INFO: starting new backup job: vzdump --snapshot --compress --storage backup2 103
Jun 14 18:45:29 mimban vzdump[30986]: INFO: Starting Backup of VM 103 (openvz)
Jun 14 18:45:29 mimban kernel: EXT3-fs error (device dm-7): ext3_check_descriptors: Block bitmap for group 1712 not in group (block 239075328)!
Jun 14 18:45:29 mimban kernel: EXT3-fs: group descriptors corrupted!
Jun 14 18:45:30 mimban vzdump[30986]: ERROR: Backup of VM 103 failed - command 'mount -t ext3 /dev/pve/vzsnap-mimban-0 /mnt/vzsnap0' failed with exit code 32
Jun 14 18:45:30 mimban vzdump[30986]: INFO: Backup job finished with errors
 
Last edited:
EXT3-fs error (device dm-7): ext3_check_descriptors: Block bitmap for group 1712 not in group (block 239075328)!
EXT3-fs: group descriptors corrupted!

ext-fs error are quite normal for snapshots, but usually they are automatically resolved. Maybe it helps when you run fsck on the data partition (simply reboot the server)?
 
ext-fs error are quite normal for snapshots, but usually they are automatically resolved. Maybe it helps when you run fsck on the data partition (simply reboot the server)?

You are right!
After reboot with fsck everything work fine!

Thanks for Your help!