Hi,
a stale nfs file handle is usually due to the server going down/restarted or being unavailable to the client.
So, it looks like when you try to remount the nfs is still unavailable. Sounds like you need to find out why the server/nfs mount is no longer available to the client.
- is the server running?
- is there network connectivity to the client, i.e. can you ping/telnet to the server from the client?
- if you can, run exportfs on the server and check it is still exporting the filesystem you want to mount, if you can't access the server try running 'mount -e ' which should show you want filesystems the server is exporting.
- so, if the server is running and is still exporting that filesystem it is fine, and you can look at the client to see if there's something wrong there.
- also, can other machines mount this filesystem? if so then its likely the client has the problem, or possibly the network.
One thing that looks funny, you're running nfs.server stop on a machine which isn't set to be the NFS server - if machine S is the server and C is the client, you should run this on S, chances are it won't work on C and shouldn't.
Hope that makes sense and is some help?
Kevin.