- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- lockout=0000001
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2011 10:22 AM
07-26-2011 10:22 AM
lockout=0000001
HI,
One user account is saying lockout=0000001 in getprpw output. it says it has asterisk in password field..i checked and (*) asterisk was there in password field in tcb directory.
Please tell what does it mean?
is that account locked?
i tried unlocking, but failed..how to unlock it?
and What is the password of this account?
Thanks
Vishu
- Tags:
- getprpw
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2011 01:29 PM
07-26-2011 01:29 PM
Re: lockout=0000001
Yes, that account is locked. Any value other than a '0' in all positions in the lockout parameter indicates that the account is locked.
There is no password on the account. Someone has manually set it to have the '*' in the password field.
To unlock this account you will have to set its password to some value, then run 'modprpw -k' .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2011 02:33 AM
07-27-2011 02:33 AM
Re: lockout=0000001
Hi:
Edit tcb file for user and modify next entry:
:u_pwd=*:\
to
:u_pwd=abc:\
and change password for the user.
rgs,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2011 09:01 AM
07-27-2011 09:01 AM
Re: lockout=0000001
# /usr/lbin/modprpw -k username (To unlock the user)
# /usr/lbin/modprpw -v username (To reset the password lifetime value to 0)
# passwd username (Reset the user password)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2011 09:40 AM
07-27-2011 09:40 AM
Re: lockout=0000001
Hi
Please tell what does it mean?
lockout=0000001
lockout returns the reason for a lockout in a "bit" valued
string, where 0 = condition not present, 1 is
present. The position, left to right represents:
1 past password lifetime
2 past last login time (inactive account)
3 past absolute account lifetime
4 exceeded unsuccessful login attempts
5 password required and a null password
6 admin lock
7 password is a *
is that account locked?
Yes
i tried unlocking, but failed..how to unlock it?
/usr/lbin/modprpw -k username
and What is the password of this account?
Sorry you can't get the password for this account.you can reset the password with the support of superuser
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2011 11:07 PM
07-27-2011 11:07 PM
Re: lockout=0000001
Hi:
man modprpw
-k To unlock/enable a user's account that has become disabled, except when the lock is due to a missing password or * password.
rgs,