- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Account is disabled - see Account Administrator
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
04-18-2005 11:14 PM
04-18-2005 11:14 PM
Account is disabled - see Account Administrator
Account is disabled - see Account Administrator.
connection with other users is good. what should be the problem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2005 11:18 PM
04-18-2005 11:18 PM
Re: Account is disabled - see Account Administrator
I would suspect either too many attempts were made to log on as root or the account was disabled due to a policy violation (password age etc.)
If you can not su from another user, you'll have to log on via the console and enable the account.
Also (0 points to 17 answers ):
http://forums1.itrc.hp.com/service/forums/helptips.do?#34
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2005 11:18 PM
04-18-2005 11:18 PM
Re: Account is disabled - see Account Administrator
The problem is that your trusted system has disabled the root account due to one of the "rukes" being broken - such as:
Too many unsuccessful tries
Too long inactivity
etc.
Your only recourse is to log in as root from the *console* because even when root account is disabled console access will still be allowed.
Once in then run
/usr/lbin/modprpw -l -k root
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2005 11:25 PM
04-18-2005 11:25 PM
Re: Account is disabled - see Account Administrator
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2005 11:28 PM
04-18-2005 11:28 PM
Re: Account is disabled - see Account Administrator
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2005 11:34 PM
04-18-2005 11:34 PM
Re: Account is disabled - see Account Administrator
Try if "su -" is working from any normal user. If not then you need to try some root equivalent user if you have created one. Check /etc/password through vipw and see if user_ID is set to Zero for some other user except root. Having login as that user you can change root password.
Another option is if your system in configurd for rlogin as root from some other system in your network. Having rlogin to this also you can change password.
If none of the above help then you will have to reboot system in single user mode. At PDC give "hpux -is" and system will come to a prompt without password. Here you can change root password and can then reboot.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 01:50 AM
04-19-2005 01:50 AM
Re: Account is disabled - see Account Administrator
prevents having to go to the console as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2005 02:23 AM
04-19-2005 02:23 AM
Re: Account is disabled - see Account Administrator
1) create unlock script (/usr/local/bin/unlock)
#!/bin/sh
quitnice()
{
# This function exits with a message, and confirmation.
echo $MSG
echo Command completed successfully
echo "Press Enter to continue --> " ; read
exit 0
}
viewlock()
{
LOCKED=`/usr/lbin/getprpw -m alock,lockout $STRING|grep -e YES -e 1`
}
# Read argument or get input:
if [ -z "$1" ] ; then
echo "Please enter a username to unlock --> " ; read STRING
else STRING=$1
fi
# Parse argument:
if [ -z "$STRING" ] ; then
MSG="Invalid argument" && quitnice
else viewlock
fi
# Unlock!
if [ -z "$LOCKED" ] ; then
MSG="Account was not locked" && quitnice
else /usr/lbin/modprpw -m alock=NO $STRING
/usr/lbin/modprpw -k $STRING
fi
# Check results
viewlock
if [ -z "$LOCKED" ] ; then
MSG="Account was unlocked successfully" && quitnice
else
MSG="Account could not be unlocked" && quitnice
fi
exit 0
# --------------------------
2) edit sudoers
$ visudo
Cmnd_Alias SYSADMIN = /bin/su -d - root, \
/usr/local/bin/unlock
%sysadmin ALL= NOPASSWD: SYSADMIN
# NOTE: replace 'sysadmin' with appropriate SA group name
3) change permissions on su (BE CAREFUL!!)
$ chown root:bin /bin/su
$ chown root:bin /usr/bin/su
$ chmod 4550 /bin/su
$ chmod 4550 /usr/bin/su
To log in as root:
$ sudo /bin/su -d - root
To unlock account:
$ sudo /usr/local/bin/unlock