Operating System - HP-UX
1826610 Members
3353 Online
109695 Solutions
New Discussion

HPUX 11.0 Locked root account

 
SOLVED
Go to solution
Jonathan Grymes
Frequent Advisor

HPUX 11.0 Locked root account

How can I reset the root account?
4 REPLIES 4
Robert-Jan Goossens
Honored Contributor

Re: HPUX 11.0 Locked root account

Hi Jonathan,

Logon the console and enable the root account.

# modprpw -k root

Regards,
Robert-Jan
Jonathan Grymes
Frequent Advisor

Re: HPUX 11.0 Locked root account

Im in single user mode.
The command modprpw is not found.
Patrick Wallek
Honored Contributor
Solution

Re: HPUX 11.0 Locked root account

If you are in single-user mode, do the following:

# mountall

This will mount all VG00 filesystems. Don't be concerned with the messages that other filesystems can't be mounted. That's to be expected since those VG's aren't active.

# /usr/lbin/modprpw -k root

Now root is active again.

Jonathan Grymes
Frequent Advisor

Re: HPUX 11.0 Locked root account

That worked! Thanks.