Operating System - HP-UX
1752284 Members
4287 Online
108786 Solutions
New Discussion юеВ

Re: configuring nfs server and client

 
madhudeepan
Frequent Advisor

configuring nfs server and client

how to configure nfs server and client

what are steps

ver hp-ux 11i v3
4 REPLIES 4
Asif Sharif
Honored Contributor

Re: configuring nfs server and client

Hi,

Step by Step...
http://docs.hp.com/en/B1031-90061/ch02.html

Regards,
Asif Sharif
Regards,
Asif Sharif
Md. Farhan A Azam
Trusted Contributor

Re: configuring nfs server and client

Hi,

There is two ways to create NFS, one from SAM and another is through command mode, To create the NFS through command, login in the server by using ├в Super User├в id and password, and enter the full path of NFS mount point in ├в exports├в file, export file will be in /etc/exports,

In Server Side:-
#vi /etc/exports
/mount1/dir2
{Put the full path, which need to be exported}

#exportfs -a


And in client side, make entry in /etc/fstab file as below,

#vi /etc/vfstab
nfsserver_host1:/mount1/dir2 /nfs_mount_point_in_client nfs rw 0 0

#mountall

(Modify the value as per your requirement)

thnx...farhan
Md. Farhan A Azam
Trusted Contributor

Re: configuring nfs server and client

One more thing...put the entry of both hosts in /etc/hosts file.


thnx...farhan
Hakki Aydin Ucar
Honored Contributor

Re: configuring nfs server and client