Posted by
ErmanArslansOracleBlog on
URL: http://erman-arslan-s-oracle-forum.114.s1.nabble.com/ODA-Questions-tp1796p1816.html
Also look at this blog post:
http://ermanarslan.blogspot.com.tr/2015/11/oda-x4-virtualized-adding-acfs-mount.htmlIn this blog post, I add the acfsmount-nfs info to the /var/lib/nfs/etab and execute "exportfs" command.
Afterwards, I mount the exported ACFS using nfs from another machine.
[root@ermansrv1 ~]#vi /var/lib/nfs/etab
/u01/app/acfsmounts/ssdrepo1 192.168.16.14(rw,sync,no_wdelay,hide,nocrossmnt,secure,no_root_squash,no_all_squash,no_subtree_check,secure_locks,acl,mapping=identity,anonuid=65534,anongid=65534)
/u01/app/sharedrepo/vmtemp2 192.168.16.14(rw,sync,no_wdelay,hide,nocrossmnt,secure,no_root_squash,no_all_squash,no_subtree_check,secure_locks,acl,mapping=identity,anonuid=65534,anongid=65534)
/u01/app/sharedrepo/vmrepo1 192.168.16.14(rw,sync,no_wdelay,hide,nocrossmnt,secure,no_root_squash,no_all_squash,no_subtree_check,secure_locks,acl,mapping=identity,anonuid=65534,anongid=65534)
/u01/app/sharedrepo/vmtemp1 192.168.16.14(rw,sync,no_wdelay,hide,nocrossmnt,secure,no_root_squash,no_all_squash,no_subtree_check,secure_locks,acl,mapping=identity,anonuid=65534,anongid=65534) (ADDED an export for the Hypervisors private network ip)
[root@ermansrv1 ~]# exportfs
root@ermanhype ~]#mount -t nfs 192.168.16.17:/u01/app/acfsmounts/ssdrepo1 /OVS/ssdrepo1 (The ip address is the private network address of ODA BASE machine 1)