Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Password problem!

Status
Not open for further replies.

jgalantai

Programmer
Dec 22, 2004
2
HU
Hi All!
Well I have serious problem :) I bought a vax station with Open VMS, but the former owner forgot the login name and the password... (he says the login maybe is "root" .. ph... that's all)
I'm beginner in VMS and I don't have any idea how should handle this and login to the system. If anyone has idea about it then plz help me.
Thanks

Jan_OS
 
Do you have the original distribution to reinstall
OpenVMS?

Thanks, Glen
 
A few more things to try...

Try logging in as SYSTEM with passwd MANAGER or, if that does not work, try FIELD with passwd SERVICE .. this might work (these are supposed to be undocumented outside DEC, but you know how things can slip :)

If that does not work...

What you need to do is do a conversational boot and give control to the
console instead of the system startup procedures. Then you rename the
system's username/password file and replace it with a Digital-supplied
template file instead. This file has a known SYSTEM password.

How-to (assuming DUA0 is your system disk):


Press the halt button if needed to get to the >>> prompt



>>> B/1 DUA0


SYSGEN> SET/STARTUP OPA0:
SYSGEN> C

... some messages are displayed ...
... you get the dollar prompt ...


$ SET NOON
$ SPAWN


$ SET DEFAULT DUA0:[VMS$COMMON.SYSEXE]
$ RENAME SYSUAF.DAT SYSUAF.OK
$ COPY SYSUAF.TEMPLATE SYSUAF.DAT
$ RUN OPCCRASH.EXE

... system halts ...


Press the halt button if needed to get back to the >>> prompt



>>> B/1


SYSGEN> SET/STARTUP SYS$SYSTEM:STARTUP.COM
SYSGEN> C

... system boots into the VMS equivalent of multiuser. You may get some
error messages if the system tries to start layered software that relies
on accounts that are no longer available.


You can now log in as user SYSTEM with password MANAGER (case un-sensitive).

 
Thanks a lot for fast and usefull help! I can login to my system !!!! :)))
 
All of this and more can be found in the OpenVMS FAQ at
For this particular problem, look in section "5.5 Emergency (Conversational) System Startup?"

BTW, the default passwords of MANAGER for the SYSTEM account and SERVICE for the FIELD account stopped being used around the V5 release of VMS (late 1980's, early 1990's)

Ken
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top