1752806 Members
6771 Online
108789 Solutions
New Discussion

NFS CONFIGURATION STEP

 
SOLVED
Go to solution
Abubakkar
Frequent Contributor

NFS CONFIGURATION STEP

Dear All,

Any one guide me how to configure NFS server &Client in HPUX 11iV3 environment. Please explain step by step.
1 REPLY 1
nijokj
Trusted Contributor
Solution

Re: NFS CONFIGURATION STEP

on server
/sbin/init.d/nfs.server start


if required edit /etc/rc.config.d/nfsconf
and make nfs_server value to 1

edit /etc/dfs/dfstab

and put the entries

share -F nfs -o ro /nfs_mount

-o rw for rw permission for client

/usr/sbin/shareall


on client,
/sbin/init.d/nfs.client start
if required edit /etc/rc.config.d/nfsconf
and make nfs_client value to 1

mount -F nfs server_ip:/nfs_mount /local_nfs_mount