- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- User can't login after root password set
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
10-27-2005 07:46 AM
10-27-2005 07:46 AM
User can't login after root password set
groupadd user
useradd user
usermod -G group user
passwd user
This was all done from the command line. Upon attempting to login to the account we got the message, your password has been changed by root after typing in the username at the login prompt. The password we set would not work. I went in using SAM and modified the password and the user was able to login.
Is this the expected behavior?
Also, even after setting the password, I still can't ftp into the account using the pasword. It just comes back with login incorrect.
Is this also expected?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2005 07:55 AM
10-27-2005 07:55 AM
Re: User can't login after root password set
As such we cant predict the behaviours of third party swrs unless tested througly.What is that software and wat for it is ..??
Primarly you should take a backup of impo system files b4 doing any system-level changes.Ignite is recommended.
If you are quite sure of the command executions of the software, just try doing manually as these are very simple commands.
Ideally it should work..!!!!
Regds, Granite
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2005 07:56 AM
10-27-2005 07:56 AM
Re: User can't login after root password set
passwd -f
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2005 08:12 AM
10-27-2005 08:12 AM
Re: User can't login after root password set
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2005 08:14 AM
10-27-2005 08:14 AM
Re: User can't login after root password set
hope this helps.
BTW is this a trusted system? see man security
kofi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2005 08:18 AM
10-27-2005 08:18 AM
Re: User can't login after root password set
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2005 08:30 AM
10-27-2005 08:30 AM
Re: User can't login after root password set
Just try,
Just remove the account and try recreate :
1) userdel -r user
1) groupadd
2) useradd -m -G
3) passwd
--> If not trusted(ie., no TCB user account database), ensure no * in /etc/passwd.
--> If trusted, check the account status using, /usr/lbin/getprpw
Regds,granite
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2005 09:20 AM
10-27-2005 09:20 AM
Re: User can't login after root password set
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2005 09:32 AM
10-27-2005 09:32 AM
Re: User can't login after root password set
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2005 09:54 AM
10-27-2005 09:54 AM
Re: User can't login after root password set
The message "your password has been changed by root" is coming to inform you that the password has been altered and you should have been notified of the change so that you won;t be caught surprised when your old password no longer works. This is a feature of trusted systems. Hence I am assuming your system is trusted.
Since you have a trusted system, more than likely, your new users get created as locked out from the get go, to give you, as root, to allow them into the system after everything has been correctly setup. Another security measure if you want to see it that way.
/usr/lbin/modprpw -l -m alock=NO $USERNAME
/usr/lbin/modprpw -k $USERNAME # to resets incorrect login count
after this $USERNAME should be able to login.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2005 09:54 AM
10-27-2005 09:54 AM
Re: User can't login after root password set
The problem was that I put a # as the first character. What is strange to me is that I only did this after seeing what the systems generated as a passwd for me. It put in all kinds of weird chars including a #. I tried the passwd user and let it pick a pronounceable password and I was able to login directly and ftp to the account.