Operating System - OpenVMS
1752796 Members
5977 Online
108789 Solutions
New Discussion юеВ

Re: Change root password on VAX

 
SOLVED
Go to solution
Swain
Regular Advisor

Change root password on VAX

I have forgot the password for my VAX superuser login. This user account is the only one having priv=all. The server has no CD drive. How to change the root password?

Thanks,
Amaresh
8 REPLIES 8
Hakan Zanderau ( Anders
Trusted Contributor

Re: Change root password on VAX

I assume you mean the account SYSTEM ??
Is SYSTEM the only account on this node with privileges ?? or the only account you are aware of.

Hakan

















Don't make it worse by guessing.........
Hoff
Honored Contributor

Re: Change root password on VAX

Here is the boot sequence to reset the SYSTEM password, which is the OpenVMS VAX analog of superuser and root and such.

http://labs.hoffmanlabs.com/node/204

This is analogous to a typical single-user mode bootstrap.
Jim Hintze
Advisor
Solution

Re: Change root password on VAX


Well, this has been a while ('97) but we'll give it a shot.

boot the vax in conversational mode, if i remenber right set the low bit in r5.

sysboot> set/startup _opa0:
sysboot> set startup_p1 "MIN"
sysboot> c

when you see the $ prompt
$ spawn
$ spawn
$ @DRa0:[VMS$COMMON.sys$startup]VMS$INITIAL-050_VMS.COM
on the above line subsitute the correct device name for the system disk replacing DRA0

$ set def sys$system
$ run authorize
uaf> mod system/pass=12345678
uaf> exit
$ @sys$system:shutdown

.... and answer the prompts

hope this helps....


Robert Gezelter
Honored Contributor

Re: Change root password on VAX

Amaresh,

As noted, the solution is to do a conversational boot, and then redirect the startup to OPA0:.

At the SYSBOOT> prompt:

SYSBOOT> set writesysparams 0
SYSBOOT> set /startup=opa:
SYSBOOT> continue

(The manual suggests turning DECwindows off, but the DECwindows startup will not run before one gets control).

When the "$" prompt comes up, my recommendation is:

$ spawn
$ [sys0.syscommon.sysexe]startup

When the next "$" appears, one has a running system, albeit the console is still on. I then recommend:

$ set default sys$system
$ mcr authorize
AUTHORIZE> mod system/pass=
AUTHORIZE> ^Z

The WRITESYSPARAMS to 0 avoids making the change to the startup file permanent.

- Bob Gezelter, http://www.rlgsc.com
Jon Pinkley
Honored Contributor

Re: Change root password on VAX

The instructions Hoff has in

http://labs.hoffmanlabs.com/node/204

are correct. If that is what you followed, you can ignore the rest.

The order of the set commands is significant, and the instructions given by Bob will not have the effect of preventing the changed parameters from being written back to the disk and being made permanent.

Bob>>>The WRITESYSPARAMS to 0 avoids making the change to the startup file permanent

This is true, but the set writesysparams 0 has to be the last command issued prior to the continue, as any changes made reset it to 1. It is as if it always does an implicit set writesysparams 1 immediately before it sets the parameter given in the set command. (I am not sure exactly how it is implemented, but the behavior can be explained by that description)

It should be in this order:

SYSBOOT> set /startup=opa0:
SYSBOOT> set writesysparams 0
SYSBOOT> continue

Show commands have no effect, just set commands.

Try the following:

SYSBOOT> set writesysparams 0
SYSBOOT> set settime 0 ! or any other parameter
SYSBOOT> sho writesysparams ! note that it has now been changed back to 1
Parameter Name Current Default Min. Max. Unit Dynamic
-------------- ------- ------- ------- ------- ---- -------
WRITESYSPARAMS 1 1 0 1 Boolean D

See attachment for a more complete example (where I was changing time back after doing some testing)

I am also not sure why several people have recommended using something other than @SYS$SYSTEM:STARTUP after spawning.

SYS$SYSTEM is already valid when you get to the SYSBOOT> prompt, so why complicate things with sysroots that may or may not be present?

Jon
it depends
Robert Gezelter
Honored Contributor

Re: Change root password on VAX

Jon,

Thank you for the correction to my typographical error.

You are correct, and I apologize for any confusion caused by the error.

- Bob Gezelter, http://www.rlgsc.com
Hoff
Honored Contributor

Re: Change root password on VAX

>When the next "$" appears, one has a running system, albeit the console is still on. I then recommend:

Try the "previous" sequence on a recent OpenVMS Alpha V8.3 workstation box or similar. What happens there is why I've added a DEFINE step to the sequence posted at:

http://labs.hoffmanlabs.com/node/204

In at least some recent releases and configurations, you have to explicitly stop DECwindows from starting. Or it starts.

Now there's the whole question of why SYSBOOT doesn't have a "please change the SYSTEM password" knob and (while we're at it) a "please allow me to register some replacement license PAKs" knob, and entirely avoid the whole need for increasingly arcane DCL incantations, but that's fodder for another discussion.

Swain
Regular Advisor

Re: Change root password on VAX

the suggested solutions worked.
Thanks a lot

Amaresh