Hi all, I run 'aptitude safe-upgrade' on my proxmox/debian jessie.
After that I wasn't able to start my guests.
I was getting this error:
cannot import 'zfspool001': one or more devices are already in use
TASK ERROR: could not activate storage 'zpool', zfs error: exit code 1
I found out that the pool was getting automatically mounted on /zfspool001 making it unavailable for proxmox.
To fix this issue in run time
zfs umount zfspool001
To avoid mounting it at boot time
nano /etc/default/zfs
ZFS_MOUNT='no'
ZFS_UNMOUNT='no'
Hope this may help.
After that I wasn't able to start my guests.
I was getting this error:
cannot import 'zfspool001': one or more devices are already in use
TASK ERROR: could not activate storage 'zpool', zfs error: exit code 1
I found out that the pool was getting automatically mounted on /zfspool001 making it unavailable for proxmox.
To fix this issue in run time
zfs umount zfspool001
To avoid mounting it at boot time
nano /etc/default/zfs
ZFS_MOUNT='no'
ZFS_UNMOUNT='no'
Hope this may help.