How do I restart NFS server when network link goes down between two servers or NFS client / server under CentOS 4.x / RHEL / CentOS Linux 5.x?
The simplest and easiest way to stop and start (do not use restart option) NFS server under RHEL / CentOS / Fedora / Red Hat Linux is to use the init script located at /etc/init.d/ directory. Forceful umount command may result into more problems such as unresponsive NFS server and cold reboot may only solves the problem.
Stop and Start NFS and Related Services
For example type the following command to stop NFS server:
WARNING! Using restart option (i.e. service nfs restart) may crash / freeze your Linux computer if executed.# service nfslock stop
# service nfs stop
# service portmap stop
# umount /proc/fs/nfsd
Now start service in following order:
# service portmap start
# service nfs start
# service nfslock start
# mount -t nfsd nfsd /proc/fs/nfsd
You should follow me on twitter here or grab rss feed to keep track of new changes.
This FAQ entry is 5 of 14 in the "Linux / UNIX NFS File Server Tutorial" series. Keep reading the rest of the series:- CentOS / Redhat: Setup NFS v4.0 File Server
- Debian / Ubuntu Linux: Setup NFSv4 File Server
- Mac Os X: Mount NFS Share / Set an NFS Client
- RHEL: How Do I Start and Stop NFS Service?
- How To Restart Linux NFS Server Properly When Network Become Unavailable
- Linux Iptables Allow NFS Clients to Access the NFS Server
- Debian / Ubuntu Linux Disable / Remove All NFS Services
- Linux: Tune NFS Performance
- Mount NFS file system over a slow and busy network
- Linux Track NFS Directory / Disk I/O Stats
- Linux Disable / Remove All NFS Services
- Linux: NFS4 mount Error reason given by server: No such file or directory
- Linux NFS Mount: wrong fs type, bad option, bad superblock on fs2:/data3 Error And Solution
- CentOS / RHEL CacheFS: Speed Up Network File System (NFS) File Access













{ 1 comment… read it below or add one }
How do we ensure that nfs service is working fine or having some errors in the configuration?