- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS not responding
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 12:01 AM
11-19-2002 12:01 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 12:28 AM
11-19-2002 12:28 AM
Re: NFS not responding
Have you checked your network availablity at these moments ?
Patch level on NFS / Networking ?
C.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 12:37 AM
11-19-2002 12:37 AM
Re: NFS not responding
PHNE_25234 NFS cum. (+ dep. PHCO_25640 libc.cum).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 02:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 02:23 AM
11-19-2002 02:23 AM
Re: NFS not responding
try configuring through tcp,
ypu can use following command to find out
rpcinfo -p |grep nfs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 02:43 AM
11-19-2002 02:43 AM
Re: NFS not responding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 04:04 AM
11-19-2002 04:04 AM
Re: NFS not responding
The link to the attachment doesn't work...
Regards,
Vincent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2002 11:48 PM
11-19-2002 11:48 PM
Re: NFS not responding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2002 12:57 AM
11-20-2002 12:57 AM
Re: NFS not responding
As you can see at the end of the attachment, the number of retransmissions ("retrans") is exceptionally high. Same goes for the number of timeouts.
You would probably want to experiment with adding specific mount options in /etc/fstab, instead of using the defaults.
Because of the frequent timeouts, try setting the "timeout" mount options to 14. The client will then wait longer before it decides that the NFS call has failed. This helps if your network performance is slow.
You could also try and set the NFS version to 3 instead of 2. Add the following mount options to the nfs mount in /etc/fstab: "vers=3,proto=udp".
More information on configuring nfs and the specific mount options can be found at http://docs.hp.com/hpux/onlinedocs/B1031-90043/00/00/9-con.html .
If i were you, I'd not blame these problems solely on your system config. Ask the network admins if the network configuration is optimal. Ask them if they could check for a large number of collisions on the network etc.
Keep your eye on the "retrans" value in the output of "nfsstat -c" on the client system. You can reset the counters by issuing a "nfsstat -z". Then, experiment somewhat with NFS mount options. The number of "retrans" should not become more than 5% of the total number of "calls". In your current setup, they are at 286%!
My guess: network problems. Check if the nic's in your systems are set to the correct speed.
HTH
Regards,
Vincent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2002 05:14 AM
11-20-2002 05:14 AM
Re: NFS not responding
It appears that either the client requests are not reaching the server, or the responses are not reaching the client.
Try pinging with larger packets, ie.,
ping client-host 8000
And on the client, run netstat -s -p ip to see if anything is dropped due to fragment re-assembly timeouts.
Also note whether the client and server are on the same or different subnets.
If these things indicate any problem, you could have a link mis-configured, or a router problem .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2002 12:05 PM
11-20-2002 12:05 PM
Re: NFS not responding
You have very high number of retransmissions.
If you have extensive load on the subnet, you might consider putting NFS on the dedicated network w/dedicated lan cards.
Ask your network admins to put sniffers on your segment and investigate reasons for retransmissions.
netstat -s -p ip is a good idea. However I think based on reports provided, datagram assembly is not the issue here.
If you have intentions - run nettl and analyse IP headers and agreed MTO size for IP packets between two of your hosts.
Hope this helps,
0leg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-22-2002 11:54 PM
11-22-2002 11:54 PM
Re: NFS not responding
If you have intentions - run nettl and analyse IP headers and agreed MTO size for IP packets between two of your hosts.
Could you please give more details on using nettl and how to analyze IP heads and MTO.