- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: user account : access is denied
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
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
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-21-2009 04:34 AM
тАО05-21-2009 04:34 AM
user account : access is denied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-21-2009 04:43 AM
тАО05-21-2009 04:43 AM
Re: user account : access is denied
USER=myusername
/usr/lbin/modprpw -l -m alock=NO $USER #removes lock
/usr/lbin/modprpw -k $USER #resets failed login count
Hope this helps
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-21-2009 05:05 AM
тАО05-21-2009 05:05 AM
Re: user account : access is denied
Another simple way is goto SAM->Accounts for Users and Groups->Users-> select the user -> Goto Actions -> Reactivate the account
You can login now.
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-22-2009 06:00 AM
тАО05-22-2009 06:00 AM
Re: user account : access is denied
/usr/lbin/modprpw -k $1
/usr/lbin/modprpw -k username
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-22-2009 07:22 AM
тАО05-22-2009 07:22 AM
Re: user account : access is denied
you will also get some help from below threads, pls go through it, thanks
https://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=1106305
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2009 04:27 AM
тАО05-23-2009 04:27 AM
Re: user account : access is denied
#modprpw -k username
thanks and regards
Sajjad Sahir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2009 05:02 AM
тАО05-23-2009 05:02 AM
Re: user account : access is denied
Above comments , have explained how to enable user account if its locked.
User account gets locks due to unsucesfull login attempts or accounts devactivated if password has been expired.
You can always check before enabling by below will give lot information
# /usr/lbin/getprpw -l
#/usr/lbin/modprpw -k
Thanks,
Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-23-2009 07:03 AM
тАО05-23-2009 07:03 AM
Re: user account : access is denied
The account lock out because of two reasons
1)password life time expires
2)exceeded unsuccessful login attempts
1)You may need to unlock the id with
#modprpw -k
2)and reset the password for that user.
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 *
Thanks!!
Johnson