home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / sys / sgi / 13160 < prev    next >
Encoding:
Text File  |  1992-09-01  |  1.7 KB  |  43 lines

  1. Newsgroups: comp.sys.sgi
  2. Path: sparky!uunet!haven.umd.edu!darwin.sura.net!jvnc.net!yale.edu!ira.uka.de!News.BelWue.DE!news.uni-ulm.de!huober_r
  3. From: huober_r@hal.rz.uni-ulm.de (Reiner Huober)
  4. Subject: Re: NFS Question...
  5. Message-ID: <1992Sep1.135212.11858@wega.rz.uni-ulm.de>
  6. Sender: huober_r@hal (Reiner Huober)
  7. Organization: Universitaet Ulm
  8. References:  <1992Aug31.165654.24006@news.iastate.edu>
  9. Date: Tue, 1 Sep 1992 13:52:12 GMT
  10. Lines: 31
  11.  
  12. In 1992Aug31.165654.24006@news.iastate.edu you write
  13.  
  14. > If a line in my fstab looks like:
  15. >
  16. > [machinename]:/usr/mp1 /usr/mp1 nfs bg,soft,timeo=28,retrans=16 0 0
  17. >
  18. > should the 'bg' and 'soft' options prevent network lockups when one
  19. > machine (nfs server) goes down? 
  20.  
  21. generally it's not wise to use the option "soft" on a writeable
  22. Filesystem (see fstab(4)), since the remote filesystem could become
  23. corrupted. Also, you must distinguish between "mount options"
  24. like bg, which are only valid when a fs is mounted, so this will not
  25. help much when dealing with network lockups, and "connection options".
  26. We use
  27.  
  28.            ro,bg,soft       for read-only mounts (e.g. man pages)
  29.            rw,bg,hard,intr  for writeable filesystems (e.g. homedirs)
  30.  
  31. Network lockups are a common problem using NFS.
  32. Perhaps you should simply increase the number of nfsd-Daemons
  33. (Default 4) and biod-Daemons (also 4). Under IRIX3.x, you must edit
  34. /etc/init.d/network. On our machines (not all SGI's), we use 8 biod 
  35. and 8 nfsd, if a machine exports a filesystem, and on one server, I 
  36. increased the number of nfsd to 16. On our configuration, this led 
  37. to much better behaviour if an important machine goes down, but it did
  38. not disappear fully :-(
  39.  
  40. Reiner Huober
  41.  
  42.  
  43.