home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / os / vms / 17775 < prev    next >
Encoding:
Text File  |  1992-11-10  |  3.0 KB  |  62 lines

  1. Newsgroups: comp.os.vms
  2. Path: sparky!uunet!stanford.edu!kronos.arc.nasa.gov!iscnvx!news
  3. From: marshall@nebula.ssd.lmsc.lockheed.com (Bob Marshall)
  4. Subject: Re: Problem with System Boot
  5. Message-ID: <1992Nov11.021200.12129@iscnvx.lmsc.lockheed.com>
  6. Sender: news@iscnvx.lmsc.lockheed.com (News)
  7. Reply-To: marshall@nebula.ssd.lmsc.lockheed.com
  8. Organization: LMSC, Sunnyvale, California
  9. References: <00963684.EADF8AE0.18604@shrsys.hslc.org>
  10. Date: Wed, 11 Nov 92 02:12:00 GMT
  11. Lines: 49
  12.  
  13. In article <00963684.EADF8AE0.18604@shrsys.hslc.org>, simon@SHRSYS.HSLC.ORG (Alan Simon) writes:
  14. >My system crashed last night for some unknown reason.  When I attempted to
  15. >bring it back up, I ran into problems.  The system made it to SYSTARTUP_V5.COM
  16. >without any problems.  It started DECnet, did several DEFINEs, and ran
  17. >LAT$SYSTARTUP.COM.  When it tried to start LAT, after creating and modifying a
  18. >number of ports, I got the following error:
  19. >
  20. >    %DCL-W-ACTIMAGE, error activating image LATCP
  21. >        -CLI-E-IMGNAME, image file DSA0:[SYS0.SYSCOMMON.][SYSEXE]LATCP.EXE;
  22. >    -RMS-E-ACC, ACP file access failed
  23. >    -SYSTEM-F-EXBYTLM, exceeded byte count quota
  24. >
  25. >Most of the rest of SYSTARTUP_V5.COM bombed.  Most of the errors were the same
  26. >as above, with various other error messages because certain things did not run
  27. >properly (such as the disks not being mounted).  In the system account, I 
  28. >bumped up BYTLM from 32768 to 65536 and PBYTLM from 1024 to 4096, and 
  29. >re-booted.  No change.  At that point, I logged into the system account, and 
  30. >ran each of the commands in SYSTARTUP_V5.COM manually.  Everything worked like 
  31. >a charm!  What am I missing, and I how can I fix this before the next reboot?
  32.  
  33. The STARTUP process does not get its quotas from the UAF record for username
  34. SYSTEM; it gets them from the corresponding PQL SYSGEN parameter. Try raising
  35. PQL_MBYTLM and PQL_DBYTLM. I had to do a similar thing to give the STARTUP
  36. process a higher PGFLQUOTA. I added the following lines to the file
  37. SYS$MANAGER:SYENVIRON.COM, since I didn't want the increased PQL_MPGFLQUOTA
  38. value to persist after booting (it's a dynamic parameter, so it can be
  39. changed on the fly) :
  40.  
  41. ----------------
  42. $! In order for the ORACLE SQLDBA image to run during boot, the STARTUP
  43. $! process needs a PGFLQUOTA of 30000. The only way to accomplish this is
  44. $! to set PQL_MPGFLQUOTA to 30000 before booting. After the STARTUP 
  45. $! process has been created we want to set the PQL_MPGFLQUTOA value back
  46. $! to a reasonable value in the set of ACTIVE parameters.
  47. $!
  48. $! RAM, 7/31/92
  49. $!
  50. $    run sys$system:sysgen
  51.      set pql_mpgflquota 512
  52.      write active
  53.      exit
  54.  
  55. =============================================================================
  56. Bob Marshall                     \\     "Women aren't as smart as they
  57. Lockheed Missiles & Space Co.     \\     think they are; they think we
  58. Sunnyvale, CA                      \\    men know a lot more than we
  59. marshall@force.ssd.lmsc.lockheed.com\\   really do."
  60. "I tell the truth 'cept when I lie"  \\     - Tim the Toolman
  61. =============================================================================
  62.