home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / os / vms / 20469 < prev    next >
Encoding:
Internet Message Format  |  1993-01-06  |  2.9 KB

  1. Path: sparky!uunet!wupost!spool.mu.edu!agate!ucbvax!VAX5.CSD.COM!RICH
  2. From: RICH@VAX5.CSD.COM (The Ghost in the Machine)
  3. Newsgroups: comp.os.vms
  4. Subject: RE: 5.5 Upgrade blues..
  5. Message-ID: <930106135005.230025ba@VAX5.CSD.COM>
  6. Date: 6 Jan 93 21:50:05 GMT
  7. Sender: daemon@ucbvax.BERKELEY.EDU
  8. Distribution: world
  9. Organization: The Internet
  10. Lines: 65
  11.  
  12. In a previous article, Luke Brennan, 
  13. <munnari.oz.au!metro!casino.cchs.su.OZ.AU!brennan@UUNET.UU.NET> states:
  14.  
  15.  
  16. >just upgrading my uVAX III from 5.4-2 and things are screwy..
  17. >
  18. >Phase I chugged away, no problems.. reboot..
  19. >
  20. >Phase II commenced..
  21. >
  22. >then...
  23. >
  24. >%STDRV-I-STARTUP blah blah
  25. >%STDRV-E-OPENFAIL, failure opening component file 0, STARTUP$STARTUP_VMS
  26. >%STDRV-I-CONTINUING, continuing with partial file list
  27. >%STDRV-F-FATALERR, fatal error reading startup databse
  28. >%DCL-W-UNDFIL, file has not been opened by DCL - check logical name
  29. >
  30. [...]
  31. >%DCL-W-UNDFIL, file has not been opened by DCL - check logical name
  32. >again... and again...  seems to be spinning on this line :-(
  33. >
  34. >
  35. >I assume I'll go crash the system in a while if it just keeps spinning..
  36. >
  37. >*ANYBODY* seen this before? Anybody know what the hell is happening???
  38.  
  39. The message "%STDRV-E-OPENFAIL" is from the system startup driver and indicates
  40. that the startup driver encountered a fatal error while trying to read the VMS
  41. startup database file.  This file is pointed to by the logical 
  42. STARTUP$STARTUP_VMS and by default this logical points to the file 
  43. SYS$STARTUP:VMS$VMS.DAT.
  44. Check to see if the logical STARTUP$STARTUP_VMS is defined and if it is, see
  45. if it points to a file that exists.  If the logical STARTUP$STARTUP_VMS points
  46. to a file that exists, you can view the contents of that file as follows:
  47.  
  48. $ mcr sysman
  49. sysman> startup set database startup$startup_vms
  50. %SYSMAN-I-NEWCOMFIL, current component file is now STARTUP$STARTUP_VMS
  51. sysman> startup show file
  52. %SYSMAN-I-COMFIL, contents of component database on node VAX5
  53. Phase        Mode   File 
  54. ------------ ------ ---------------------------------
  55. INITIAL      DIRECT VMS$INITIAL-050_VMS.COM
  56. INITIAL      DIRECT VMS$INITIAL-050_LIB.COM
  57. INITIAL      CALLED VMS$INITIAL-050_CONFIGURE.COM
  58. DEVICES      DIRECT VMS$DEVICE_STARTUP.COM
  59. PRECONFIG    DIRECT IPC$STARTUP.COM
  60. CONFIG       DIRECT VMS$CONFIG-050_VMS.COM
  61. CONFIG       DIRECT VMS$CONFIG-050_ERRFMT.COM
  62. CONFIG       DIRECT VMS$CONFIG-050_CACHE_SERVER.COM
  63. CONFIG       DIRECT VMS$CONFIG-050_CSP.COM
  64. CONFIG       DIRECT VMS$CONFIG-050_OPCOM.COM
  65. CONFIG       DIRECT VMS$CONFIG-050_AUDIT_SERVER.COM
  66. CONFIG       DIRECT VMS$CONFIG-050_JOBCTL.COM
  67. CONFIG       DIRECT VMS$CONFIG-050_LMF.COM
  68. CONFIG       DIRECT VMS$CONFIG-050_SHADOW_SERVER.COM
  69. BASEENVIRON  DIRECT VMS$BASEENVIRON-050_VMS.COM
  70. BASEENVIRON  DIRECT VMS$BASEENVIRON-050_SMISERVER.COM
  71. BASEENVIRON  DIRECT VMS$BASEENVIRON-050_LIB.COM
  72. BASEENVIRON  DIRECT LICENSE_CHECK.EXE
  73. BASEENVIRON  DIRECT DECDTM$STARTUP.COM
  74. LPBEGIN      DIRECT VMS$LPBEGIN-050_STARTUP.COM
  75.  
  76.  
  77.