- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Password disable/ expire
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
Forums
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
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
05-24-2006 12:05 PM
05-24-2006 12:05 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2006 12:32 PM
05-24-2006 12:32 PM
Re: Password disable/ expire
/usr/lbin/modprpw -l -v userid
is something needed to reinvoke them.
And
/usr/lbin/getprpw userid can tell you if user is locked.
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2006 12:38 PM
05-24-2006 12:38 PM
Re: Password disable/ expire
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2006 12:58 PM
05-24-2006 12:58 PM
Solution/usr/lbin/getprpw -m lockout
this will return you locokout value with 7 digits and each has a meaning.
If its all "0" then it means that account is enabled and if any field is "1" then it means the account is locked with a reason..
below is the meaning if you find one in any place..
1st - past password lifetime
2nd - past last login time (inactive account)
3rd - past absolute account lifetime
4th - exceeded unsuccessful login attempts
5th - password required and a null password
6th - admin lock
7th - password is a *
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2006 01:21 PM
05-24-2006 01:21 PM
Re: Password disable/ expire
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2006 04:23 AM
05-25-2006 04:23 AM
Re: Password disable/ expire
logins -x -l userid .. also shall help to good extent
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2006 02:32 AM
05-26-2006 02:32 AM
Re: Password disable/ expire
You can check the user status.
Check if locked:
/usr/lbin/getprpw -r -m lockout user_id
000010
Unlock account:
/usr/lbin/modprpw -k user_id
sp,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2006 02:40 AM
05-26-2006 02:40 AM
Re: Password disable/ expire
you can also check some stuff using the following. There are some setting you can check.
This will show the user setting.
getprpw user_login_nameâ .
This will change the password changing.
modprpw â m mintm=1 user_login_name
if you want to see the value for the â mintmâ field before changing it run â getprpw user_login_nameâ . this for password changing.
sp,