![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| HP-UX HP-UX (Hewlett Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on System V. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Log Information about login/logout of any users | suuuper | SUN Solaris | 4 | 10-08-2008 11:33 AM |
| users login | lo-lp-kl | Shell Programming and Scripting | 3 | 05-23-2008 12:27 PM |
| Users with login privileges | sprellari | Linux | 2 | 08-23-2006 05:22 AM |
| Change users login name | spacewalker | AIX | 9 | 03-20-2006 11:09 AM |
| NIS users cann't login on AIX and HP | mod | UNIX for Advanced & Expert Users | 3 | 08-22-2001 11:25 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
No users can login
Dear Forum,
I had this case before, all of sudden all users including root can't login. What done is by connecting to console port and resetting root password, "pwunconv" command, reboot server. My question is, how this can happen??? thanks ![]() |
|
||||
|
It is quite easy to convert or unconvert trusted with SAM by accident. If you are intentionally trusted beware that the reverse convert loses all the user account passwords. As "vbe" states you need to know whether your system is normally trusted or not.
SAM has a log and a log viewer. Code:
/usr/sam/bin/samlog_viewer Is inetd running? Anything unusual in syslog? |
|
||||
|
If you have tried to convert your system to trusted system, or vice-versa, all your users' status have been changed to LOCKED. You need to unlock the users one by one.
Code:
cat /etc/passwd | while read uline; do UNAME=$(echo $uline | cut -d: -f1) /usr/lbin/modprpw -l -m alock=NO $UNAME #unlocks the account /usr/lbin/modprpw -k $UNAME #resets incorrect login count done |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|