home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / hp / 9472 < prev    next >
Encoding:
Internet Message Format  |  1992-08-19  |  2.0 KB

  1. From: kk@hpl-opus.hpl.hp.com (Konstantinos Konstantinides)
  2. Date: Wed, 19 Aug 1992 23:58:16 GMT
  3. Subject: Re: renaming client & server in a cluster
  4. Message-ID: <63300092@hpl-opus.hpl.hp.com>
  5. Organization: HP Labs, High Speed Electronics Dept., Palo Alto, CA
  6. Path: sparky!uunet!charon.amdahl.com!pacbell.com!mips!sdd.hp.com!hpscdc!hplextra!hpl-opus!kk
  7. Newsgroups: comp.sys.hp
  8. References: <2A9290C8.27098@orion.oac.uci.edu>
  9. Lines: 48
  10.  
  11. In comp.sys.hp, rcaslis@anansi.acs.uci.edu (Russell Caslis) writes:
  12.  
  13. > I have a cluster of HPs set up here (two 710s, one 720).  One 710 is the
  14. > server, one is a client, and the 720 is a client.
  15. > The person who I set these machines up for wants to recieve mail at a specific
  16. > address which is currently assigned to a client, not the server.  According
  17. > to what I know, the clients cannot receive mail, only the server can (great
  18. > design, huh?).
  19. > So what I want to do is swap the names of the two 710s.  I have been told that
  20. > there is no way to do this without re-installing the OS.  Is there any other
  21. > way to do this?
  22. > --
  23. > Russ Caslis
  24. > rcaslis@uci.edu
  25.  
  26. Clients CAN receive and send mail, except it is not recommended.
  27. One approach described in "Installing and administ. ARPA services"
  28. is using mail name-servers.
  29.  
  30. We use something simpler. We start the sendmail daemon on a client too.
  31. This is what I have in /etc/netbsdsrc so that hplempel and hplvab
  32. (both cnodes) run the sendmail daemon.
  33.  
  34. .................
  35. #
  36.     # Diskless clients freeze and read a sendmail configuration file
  37.     # with the server's hostname, and run no sendmail daemon.
  38.     #
  39.     /usr/lib/sendmail -oMw`cnodes -r` -bz
  40.  
  41.     # If it is hplempel or hplvab start also sendmail!!
  42.  
  43.       if [ "`hostname`" = "hplempel" -o "`hostname`" = "hplvab" ] ; then
  44.         /usr/lib/sendmail -oMw`cnodes -m` -bz
  45.         /usr/lib/sendmail -bd -q30m && /bin/echo "sendmail  \c"
  46.         else
  47.         /usr/lib/sendmail -oMw`cnodes -r` -bz
  48.      fi
  49.  
  50. ........................
  51.  
  52. K. Konstantinides
  53. kk@hpkronos.hpl.hp.com
  54.