home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / os / vms / 18105 < prev    next >
Encoding:
Internet Message Format  |  1992-11-17  |  2.3 KB

  1. Path: sparky!uunet!charon.amdahl.com!pacbell.com!sgiblab!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!linac!att!ucbvax!CCS1.BBN.COM!RMCEWEN
  2. From: RMCEWEN@CCS1.BBN.COM (Regis McEwen)
  3. Newsgroups: comp.os.vms
  4. Subject: Re: retrofitting the old VMS queue manager
  5. Message-ID: <01GR9DLCUL1G0005I0@ccs1.bbn.com>
  6. Date: 17 Nov 92 17:41:00 GMT
  7. Sender: daemon@ucbvax.BERKELEY.EDU
  8. Distribution: world
  9. Organization: The Internet
  10. Lines: 58
  11.  
  12. Steve,
  13.  
  14. > I need to return to using the old VMS queue manager (as used in VMS A5.5 and
  15. > previous versions) on a cluster running 5.5-1, while retaining everything
  16. > else the same (ie I don't want to reinstall A5.5). This is not related
  17. > to any problems with the new queue manager - I have other reasons for
  18. > doing this which I can't go into here. Anyone know how to retrofit the
  19. > old queue manager? Thanks,
  20.  
  21.     Below, is a previous response I sent INFO-VAX last August.
  22.  
  23.                         -Regis
  24.  
  25. ============================================================================
  26. > If you want to have a V5.4-3 compatible queman and jobcontroller, you'll
  27. > have to install 5.5 from the May condist and say "NO" to "do you want to
  28. > convert your que database?". This will leave you at VMS a5.5. Then you
  29. > can't upgrade to 5.5-1, if memory serves.
  30.  
  31.     The "hackers" way, even if you've upgraded to VMS 5.5 or have a
  32.     Factory installed newer (4000's etc) machines with VMS 5.5, or
  33.     whatever, is to take advantage of a little known undocumented
  34.     "workaround":
  35.  
  36.     Edit SYS$STARTUP:VMS$CONFIG-050_JOBCTL.COM and define the symbol
  37.     newjobctl = 0  before the commands to actually run the job controller:
  38.  
  39.         $newjobctl = 0              ! Added line
  40.         $define/user sys$output nl:      ! Old line
  41.         $if newjobctl              !   ""
  42.         $then                  !   ""
  43.         $run sys$system:jbc$job_control - !   ""
  44.                 .
  45.                 .
  46.                 .
  47.                 .
  48.         $else                  ! Else, if set to 1
  49.         $run sys$system:jobctl -      ! run the "old" job controller
  50.                 .
  51.                 .
  52.                 .
  53.  
  54.     If 'newjobctl' is set to 0, it will run the old SYS$SYSTEM:JOBCTL.EXE
  55.     instead of the new SYS$SYSTEM:JBC$JOB_CONTROL.  Deleting the 'Added
  56.     line' or setting newjobctl = 1 will give you back the new queue
  57.     manager.
  58.     
  59.     This also allows you the ability of being able to run a cluster of
  60.     pre-VMS 5.5 machines with your VMS 5.5 one, if necessary.
  61.  
  62.     (Don't forget to save a copy of the original file and restore
  63.     *before* any VMS upgrades !)
  64.  
  65.  
  66.                             -Regis
  67.  
  68.  
  69.  
  70.