HOW TO SHARE WITH ZFS A FILE SYSTEM IN SOLARIS 11




As root execute the following


Create the pool

#zpool create ztemp c0d0

Create ZFS 

#zfs create ztemp/temp

Mount ZFS 

#zfs set mountpoint=/temp ztemp/temp

Share ZFS with the option "sharenfs=on"

#zfs set sharenfs=on ztemp/temp

Share and Select the PATH and SERVERS that you need that mount the ZFS from the NFS Server in our case the servers are oracle1,oracle2 and oracle3 with Read and Write Options


#zfs set share=name=temp,path=/temporario,prot=nfs,anon=0,rw=oracle1:oracle2:oracle3 ztemp/temp




Comments