cache zfs error

frankz

Well-Known Member
Nov 16, 2020
413
26
48
Hi everyone, some time ago I deleted a doisco cache ssd used as a zfs-pve2 pool. I have regularly removed the disk via the zfs commands, but evidently the system during boot reports the error of the absence of the cache disk. What can it do? Thanks
Ps: Is it enough to proceed with systemctl disable zfs-import-cache or do you use another procedure?
 

Attachments

  • cache.png
    cache.png
    63.1 KB · Views: 15
Last edited:
system during boot reports the error of the absence of the cache disk.
not quite - the system does not import the pool because the system is missing the zpool.cache-file (/etc/zfs/zpool.cache)
try enabling `zfs-import-scan.service`
Code:
systemctl enable zfs-import-scan.service
and reboot
 
  • Like
Reactions: frankz
not quite - the system does not import the pool because the system is missing the zpool.cache-file (/etc/zfs/zpool.cache)
try enabling `zfs-import-scan.service`
Code:
systemctl enable zfs-import-scan.service
and reboot
It was actually deactivated. I executed the enable as you indicated and it does not report an error. Thanks a lot for your information.