I interconnect several of my Linux servers with NFS. For a while its been going fine but for some reason keeps getting more and more unstable
Example: Copy a 4 GB file from client to NFS server, fails before finishing with an IO error. dmesg is filled with
[1525450.884071] nfs: server quackron not responding, timed out
[1525451.384072] nfs: server quackron not responding, timed out
[1525451.884072] nfs: server quackron not responding, timed out
[1525452.384086] nfs: server quackron not responding, timed out
[1525452.884065] nfs: server quackron not responding, timed out
[1525584.112127] nfs: server quackron not responding, timed out
[1525669.492066] nfs: server quackron not responding, timed out
[1525930.544062] nfs: server quackron not responding, timed out
Mount options (the many extra options are to prevent a disappearing NFS server from locking the whole directory until a restart or umount trickery)
rw,intr,soft,timeo=5,retrans=5,actimeo=10,retry=5,vers=4,addr=10.0.0.20,clientaddr=10.0.0.1
Going to the server, I get this in dmesg
[1384141.237197] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
[1384141.237237] NFSD: starting 90-second grace period
[1439491.137710] nfsd: last server has exited, flushing export cache
[1439492.461197] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
[1439492.461236] NFSD: starting 90-second grace period
I can't find it in this dmesg or the log, but I do know I've seen "nfsd last server has exited signal 15" errors. Googling can't seem to find any useful information
Any idea's what would cause nfs to constantly crash?
Note: This server is running Ubuntu Server 11.10 and is fully up to date
scpto copy the same file? – Karlson Feb 23 '12 at 21:29/etc/exports, its mounted in a script for various reasons. Script command:sudo mount -t nfs -o intr,soft,timeo=5,retrans=5,actimeo=10,retry=5 -v -v -v $1:$2 $3with the variables at the end corresponding to server, remote folder, and local folder – TheLQ Mar 23 '12 at 1:33