Cannot delete CT snapshots

Dayve

New Member
Apr 19, 2019
23
1
1
57
Yesterday I did a update of PVE all packages. Since then I cannot delete some of my CT snapshots.If I try to delete them it will say cannot delete and check the name of the CT and then locks the CT.
Now the status says "delete" but never does. Is anyone else seeing this?

upload_2019-7-4_4-32-32.png
 
Do you see any message in the syslog regarding the snapshot and the storage? Are these snapshots still on the storage?
 
Do you see any message in the syslog regarding the snapshot and the storage? Are these snapshots still on the storage?
I see this in the logs:

Jul 03 16:57:51 pve pvedaemon[3659]: <root@pam> starting task UPID:pve:00002D59:00165C31:5D1D16CF:vzdelsnapshot:100:root@pam:
Jul 03 16:57:51 pve pvedaemon[11609]: <root@pam> delete snapshot VM 100: Before_94_3
Jul 03 16:57:51 pve pvedaemon[11609]: zfs error: could not find any snapshots to destroy; check snapshot names.
Jul 03 16:57:51 pve pvedaemon[3659]: <root@pam> end task UPID:pve:00002D59:00165C31:5D1D16CF:vzdelsnapshot:100:root@pam: zfs error: could not find any snapshots to destroy; check snapshot names.

Where does PVE store the CT snapshots so I can look if they are still there?
 
Jul 03 16:57:51 pve pvedaemon[11609]: zfs error: could not find any snapshots to destroy; check snapshot names.
It seems there are no snapshots. You can check if they exist with the following command.
Code:
zfs list -t snapshot
If there isn't a snapshot anymore and you are sure that they don't exist anymore, then you can force the deletion of the snapshot entry.
Code:
qm delsnapshot <vmid> <snapname> -force
 
  • Like
Reactions: raqmudy
It seems there are no snapshots. You can check if they exist with the following command.
Code:
zfs list -t snapshot
If there isn't a snapshot anymore and you are sure that they don't exist anymore, then you can force the deletion of the snapshot entry.
Code:
qm delsnapshot <vmid> <snapname> -force
Thank you. That cleared it up. Just not sure where some of the snapshots went cause I never deleted them.