- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- password change
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-08-2001 06:51 PM
10-08-2001 06:51 PM
would like to know why i am receiving error message "current user has no entry in protected password entry"
Thanks in advance...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 07:03 PM
10-08-2001 07:03 PM
SolutionIt could be that your password file has been edited and the user has not been added through either SAM or the 'useradd' command. Try to run 'pwck' to see what it reports. You can see the entry in /tcb/files/auth/letter to see if any corresponding entry exists. (I suspect not)If this is the case suggest you remove the user id from the password file using 'vipw' and set it up properly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 07:09 PM
10-08-2001 07:09 PM
Re: password change
I guess someone edited your /etc/passwd file and manually added that user.
Thanks
Animesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 07:12 PM
10-08-2001 07:12 PM
Re: password change
I should have mentioned that when running the 'pwck' command run as:
# /usr/sbin/pwck -s
This checks the consistency with the protected password database.
HTH
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 10:44 PM
10-08-2001 10:44 PM
Re: password change
still unable to solve prob... taught i already fixed it :-(
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 10:52 PM
10-08-2001 10:52 PM
Re: password change
Suggest you try and remove the offending
userid (unfortunately yours) keep your
directory etc and try to re-instate it.
It certainly seems like there is some
sort of corruption. What was the output
of 'pwck -s'
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 11:06 PM
10-08-2001 11:06 PM
Re: password change
The output of pwck -s shows two userids 'login directory not found'
what do you mean by 'reinstate /etc/passwd' file? how do i do that?
Thanks again for the never ending help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 12:20 AM
10-09-2001 12:20 AM
Re: password change
What I meant was to remove the offending account(s) and add them back in using either 'sam' or the 'useradd' command, not the password file itself.
Now getting to the output where it says 'login directory not found'. What this means is that there is no actual home directory for the
users as to what was reported. Maybe this is just the problem. For each account that this message appears next to create the directory where it is stated from the /etc/passwd file. To fix this you should be logged in as 'root' or equivalent. Where I say "userid" replace it with the account that has the reported problem.
# grep "userid" /etc/passwd
e.g. user fredb has his directory as /home/fredb
this is probably missing.
# mkdir /home/fredb; chown fredb:users /home/fredb
# cp /etc/skel/.profile /home/fredb ; chown fredb /home/fredb/.profile
etc....
Geez... I hope this fixes this... Let me know how you get on.... Don't worry it is pleasure to help.
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 01:02 AM
10-09-2001 01:02 AM
Re: password change
This seemed to be strange, I haven't done anything yet, just changed permission of /etc/passwd to rw-r--r--, root can now modify users' passwds but users cannot do passwd themselves, either via command line or via sam (even root cannot modify passwords via sam)I tested by creating a new user, sam gave me a default password, root logs out, when the new user logs in, he was prompted for the old and new password, then an error occured ' no protected password entry'
any more info?
thanks again... :-(