Linux - Restart NFS server when network link down
start service in following order:
# service nfslock stop
# service nfs stop
# service portmap stop
# umount /proc/fs/nfsd
start service in following order:
# service portmap start
# service nfs start
# service nfslock start
# mount -t nfsd nfsd /proc/fs/nfsd
Comments
Post a Comment