Click to See Complete Forum and Search --> : Starting NFS


StanLin
05-21-2001, 10:05 AM
Although portmap gets started at boot, rpc.mountd and rpc.nfsd daemons don't get started. I have to start them manually before I can mount the server directories at the client.

Can anyone tell me how to get those daemons started at boot automatically? I couldn't find anything in ntsysv.

Coral Sea
05-21-2001, 11:56 AM
If you are running RedHat or Mandrake, issue:

chkconfig nfs on

and if you want nfs locking, also:

chkconfig nfslock on

which will cause the daemons to launch at boot up.

Otherwise, you could put the following in /etc/rc.local:

/etc/rc.d/init.d/nfs start

StanLin
05-23-2001, 11:20 AM
Thanks. I'll look into this.