- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS running slow
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
06-07-2004 10:43 AM
06-07-2004 10:43 AM
NFS running slow
In nfsstat, on the client: dupcheck = 573154 and increasing. every thing else I have checked looks fine. I have run out of ideas, Help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 05:59 PM
06-07-2004 05:59 PM
Re: NFS running slow
EJ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 06:56 PM
06-07-2004 06:56 PM
Re: NFS running slow
This is due to network speed mismatch,
In my environment all machines set to 100MBps full duplex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2004 07:06 PM
06-07-2004 07:06 PM
Re: NFS running slow
how do you detect network is slow?
what does netstat -i tell you?
flat or subnets?
if machine is not tru64 related (due to hpux client) please post you question in another forum!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2004 05:57 AM
06-09-2004 05:57 AM
Re: NFS running slow
dupcheck is an NFS Server statistic. That means that some NFS client is retrying the same request over and over again, that the NFS Server has already acted upon, and for which the NFS server sent a reply.
On your NFS client, you normally would get problems if there is some kind of a physcial layer network problem, or a slow NFS server. nfsstat -m will confirm this. Caution, if you have hanging NFS moutns, then nfsstat -m > tempn.out &
Check the SRTT times for the mount point(s) in question to see if they are over 100 secs:
/badmountt from badbox:/opt (Addr 192.168.11.2)
Flags: vers=3,proto=udp,auth=unix,soft,intr,link,symlink,rsize=32768,wsize=32
768,retrans=5
Lookups: srtt= 7 ( 217ms), dev= 3 ( 115ms), cur= 2 ( 440ms)
Reads: srtt= 7 ( 220ms), dev= 3 ( 15ms), cur= 2 ( 450ms)
All: srtt= 7 ( 217ms), dev= 3 ( 15ms), cur= 2 ( 440ms)
Solutions:
Use NFS Version 3 with TCP for slow/unreliable networks. Look in your netstat -m output to see what kind of mount you have.
Fix the underlying network problem.
Local network stats for lan1 can be found
with lanadmin -g 1
Check the speed/duplex of you network link.
For lan1, landadmin -x 1
Workarounds:
Create another mount point, e.g. /testmnt, and mount it up using -orsize=512,wsize=512 and see if that works better. This will cut down the size of the NFS packets so maybe they will work better. Example:
# mkdir /testmnt
# mount -F nfs -orsize=512,wsize=512,soft server:/export /testmnt
HTH,
-> Brian Hackley
p.s. "optimizing NFS performace" by Dave Olker, excellent book.