Ever wanted to add a ZFS file system to a Solaris 10 non-global zone but ran into the following error:
could not verify fs /test: zfs ‘tank/test’ mountpoint is not “legacy”zoneadm: zone non-global-zone failed to verify
The fix would be to update/create the ZFS dataset as a legacy mount point. For this post, I assume that you have both basic understanding of Solaris zone technology and zfs file systems.
In the version of Solaris that I run, (Solaris 10 11/06, sparc) here are the steps you would need to follow in order to add a ZFS file system to a Solaris non-global zone.
- Create a legacy zfs pool from the global zone# zpool create tank c0t0d0s0
- Create a zfs dataset using the new tank zfs pool
# zfs create tant/test
- Display the zfs pool# zfs listNAME USED AVAIL REFER MOUNTPOINTtank 6.57G 120G 26.5K /tanktesttank/test 24.5K 120G 24.5K /tank /
- Set the new tank/test dataset as a legacy mount point
# zfs set mountpoint=legacy tank/test
- Display the zfs pool# zfs listNAME USED AVAIL REFER MOUNTPOINTtank 6.57G 120G 24.5K /tank
- Create a Solaris non-global zone with similar options as below# zonecfg -z non-global-zone info... fs: dir: /testraw not specifiedspecial: tank/test type: zfs options: [] dataset: name: tank/test ...
Notice the mount point for tank/test changed from the actual mount point /tank/test to legacy.
After the zone has been created and booted, login into the non-global-zone and running a “df”will show you the new ZFS pool is mounted and ready to satisfy your ZFS needs.
No comments:
Post a Comment