- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: enabling a user account
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
11-27-2007 08:23 PM
11-27-2007 08:23 PM
# grep l343871 /etc/passwd
l343871:*:10967:103:Richard Hepworth:/home/l343871:/usr/bin/ksh
i want to enable this user.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2007 08:34 PM
11-27-2007 08:34 PM
SolutionTo re-enable a disabled user account on the system using SAM:
Select the Accounts for users and groups section.
Select users.
Select the user account that is disabled.
With the disabled user account selected, go to the top of the screen and select Actions.
Select Reactivate to reactivate the disabled account.
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2007 08:41 PM
11-27-2007 08:41 PM
Re: enabling a user account
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2007 08:43 PM
11-27-2007 08:43 PM
Re: enabling a user account
You could make use of
usermod -x administrative_lock_applied=0 "User account"
from super user account.
If there are too many condition for disabling an account use then,
usermod -x grace_limit=1
will bypass most of the disabling conditions
for one day. This allows the user to log in
and clear the disabling condition
Thanks,
Srikanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2007 08:44 PM
11-27-2007 08:44 PM
Re: enabling a user account
fyi:-
passwd -d
Allow user to login without a password by deleting it.This option unlocks/activates the user account if found locked/deactivated.
Aneesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2007 12:26 AM
11-28-2007 12:26 AM
Re: enabling a user account
/usr/lbin/modprpw -k l343871
This will unlock/enable the user's account.
To see if a user's account is locked and why use;
/usr/lbin/getprpw -m lockout l343871
do a mna on getprpw to see what the bit positions mean.
robert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2007 12:27 AM
11-28-2007 12:27 AM
Re: enabling a user account
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2007 03:05 AM
11-28-2007 03:05 AM
Re: enabling a user account
It only takes one of these settings to equal 1 for the account to be locked.
Active user account:
$ /usr/lbin/getprpw -r -m lockout user1
0000000
Deactivated (locked) user account:
$ /usr/lbin/getprpw -r -m lockout user2
0000001
REASON[1]="past password lifetime"
REASON[2]="past last login time"
REASON[3]="past absolute account lifetime"
REASON[4]="exceeding unsuccessful login attempts"
REASON[5]="password required and a null password"
REASON[6]="admin lock"
REASON[7]="password is a *"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2007 04:38 AM
11-28-2007 04:38 AM
Re: enabling a user account
#getprpw -r -m lockout userId
#modprpw -k userid
sp,