ZFS mount stuck on boot – Ubuntu 16.04 Xenial Xerus

When testing the new, natively implemented ZFS on Linux on Ubuntu 16.04, and following some older tutorials, you might get stuck on boot at the following point:

The reaons for this is the paralellized boot-sequence of systemd. ZFSonLinux has it’s own config, on which you can decide to mount ZFS-Pools on boot, which is exactly what kicks in here. Fixing this is easy when you know how to…

  • Boot up rescue, live image, a kernel-config with upstart..

Now you can at least edit config files in the system. Luckily the default grub-config for xenial offers some options to boot the same kernel either with systemd or upstart. what you should do, is disabling the „zfs-mount.target“-target of systemd by typing

as root. Alternatively you can remove the regarding symlink manually.

  • Reboot to default Kernel

If the above Problem was true for you, you shall be able to boot up normally now. If you’re close to a heart-attack, because „zpool status“ offers no known pools, don’t worry: Due to the fact, that the kernel-module for zfs is not loaded right now, an auto-import of the pool had also not happen, but it is – of course  – still there, but we shall complete our task first:

  • Adjust config files

At first, you shall re-enable the zfs-mount-systemd-target by typing

after that, have a look onto /etc/default/zfs. You shall disable ZFS_MOUNT and ZFS_SHARE. Even if you want this, you shall disable this here, because it tries to use own mechanics to get the mounts done. Leave it disabled here, and let systemd handle the mount.

The proper edited config-file should be look like this in the end:

  • reboot

Congratulations, everything shall be fine now, and the pool and it’s vdevs and zvols should have been autoimported and mounted. If not (e.G. because you plugged in an USB-Device, and the device numbering has changed), try zpool import <poolname>. As far as i have recognized, the pool does not autoimport, when devices (or their numbering have changed, so remove your USB-devices, reboot, do an zpool import and reboot again to see if it gets imported this time.

Sometimes the zpool is still not mounted on boot. If you encounter this problem also, you can add something like this

before the „exit 0;“ line in your /etc/rc.local .

A last tip in the end: if your Pool looks degraded after importing it, do not try fiddling  with remove and re-adding your devices. Better consider an instant reboot and see if the Pool is healthy again. This problem seem only to occur, when you have added the devices by its Path like /sdc or /dev/sdc instead with it’s UUID. You cannot be entirely sure in which order the Linux-Kernel initializes the devices, so maybe it has just swapped devices, or a device came up with some delay. A reboot helps in most of that cases, because unlike other Raid-Systems only the few bits which have changed until then have to be re-synchronized („resilvered“) instead of re-syncing the whole device. But when you have manually removed a disk, then it also has to be resilvered completely.

-zeus

2 Gedanken zu “ZFS mount stuck on boot – Ubuntu 16.04 Xenial Xerus

  1. Pingback: Where’d my zpool data go? - Boot Panic

  2. Pingback: Resolved: Where'd my zpool data go? - Resolved Problem

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert