1753373 Members
4957 Online
108792 Solutions
New Discussion юеВ

Re: nfs share command

 
SOLVED
Go to solution
Dennis Handly
Acclaimed Contributor

Re: nfs share command

>/u02/oracle/StageR12 access=fobapp
>where fobapp is the server mounting the StageR12

Or more precise, fobapp is the client mounting StageR12.

>once the dfstab on the 'exporting' server is correct, and the /etc/fstab on the 'mounting' server is correct, and I reboot, (exporting first, mounting 2nd,) then everything should export and mount happily, correct?

Yes.
You can also use the automounter to mount NFS filesystems as needed on your clients.
Ron Irving
Trusted Contributor

Re: nfs share command

Thank you so much...here's the line in my dfstab:

/usr/sbin/share -F nfs -o rw=/u02/oracle/StageR12

Does that look good?
Should have been an astronaut.
Dennis Handly
Acclaimed Contributor
Solution

Re: nfs share command

>/usr/sbin/share -F nfs -o rw=/u02/oracle/StageR12
>Does that look good?

rw= takes a list of machines not filesystems.

If you want to share StageR12 to all machines you can do:
/usr/sbin/share -F nfs -o rw /u02/oracle/StageR12

Or just:
/usr/sbin/share -F nfs /u02/oracle/StageR12
Ron Irving
Trusted Contributor

Re: nfs share command

Thanks Dennis, Andy, and all you "smarter-than-me" guys!!!

Have a beer!! (Can we buy beer with our points? I AM Canadian)
Should have been an astronaut.