How to change the mount point for a ZFS pool

zfs

example:

When I created the pool, I set it to mount to /mystorage

zpool create -m /mystorage mypool raidz /dev/ada0 dev/ada1 /dev/ada2

But now I want the pool to mount to /myspecialfolder.

Any ideas how it can be done? I've searched the net and look at zpool and zfs manpages and found nothing.

Thanks

Best Answer

zfs set mountpoint=/myspecialfolder mypool
Related Question