1833018 Members
2218 Online
110048 Solutions
New Discussion

NFS Service

 
kunjuttan
Super Advisor

NFS Service

How to start NFS service in my new NFS client server??And how to configure an NFS client??
2 REPLIES 2
Hakki Aydin Ucar
Honored Contributor

Re: NFS Service

Server:
Configure NFS startup files by setting the following variables to 1 in /etc/rc.config.d/
nfsconf:
NFS_CLIENT=1
NFS_SERVER=1
NUM_NFSD=16
NUM_NFSIOD=16
PCNFS_SERVER=1

Start nfs server:
# /sbin/init.d/nfs.server start

Client:
Configure NFS startup files by setting the following variables to 1 in /etc/
rc.config.d/nfsconf:
NFS_CLIENT=1
NFS_SERVER=1
NUM_NFSD=16
NUM_NFSIOD=16
PCNFS_SERVER=1
kunjuttan
Super Advisor

Re: NFS Service

thanxx...