- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- file owner is number not name
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
07-10-2002 03:41 AM
07-10-2002 03:41 AM
file owner is number not name
Following 11i upgrade i merged the 11:00 passwd and group files with the new 11:11 files (there are no duplicates). Now i get UID as number and not a name?
any pointers please
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 03:47 AM
07-10-2002 03:47 AM
Re: file owner is number not name
This usually happens when you've got both duplicate uid / group id's or you have references to group id's in the passwd file that don't exist in the groups file and vise versa.
Hope this is of some use!
Cheers,
-ChaZ-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 03:47 AM
07-10-2002 03:47 AM
Re: file owner is number not name
1.check the permissions of the /etc/passwd file
Make sure that the permissions are r--r--r--
2.check the permissions of the /usr file system.
dr-xr-xr-x bin bin /usr
dr-xr-xr-x bin bin /usr/bin
I think there is no user associated with that UID number in the password file.
Map that UID for that appropriate user in the /etc/passwd file.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 03:49 AM
07-10-2002 03:49 AM
Re: file owner is number not name
this normally happens if you delete a user, or change UID of a user. Also it is possible that you have a corrupted /etc/passwd file.
Run the following command:
pwck
Allways stay on the bright side of life!
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 03:50 AM
07-10-2002 03:50 AM
Re: file owner is number not name
This means there is no user in the passwd file (or in NIS) with this number. If it is passwd and group file change owner to root:sys.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 04:39 AM
07-10-2002 04:39 AM
Re: file owner is number not name
u are saying merged, is this true for all the files or some of the files.
regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 04:39 AM
07-10-2002 04:39 AM
Re: file owner is number not name
u are saying merged, is UID showing the number for all the files or some of the files.
regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 04:53 AM
07-10-2002 04:53 AM
Re: file owner is number not name
As a note, you should periodically check your file systems for files that do not have owners associated with them. You can do this with the following command:
find / -nouser -exec ls -ald {} \;
The items found could either be regular cleanup or a possible attacker was on the system and missed some cleanup.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 04:57 AM
07-10-2002 04:57 AM
Re: file owner is number not name
thanks for your suggestions, problem was solved by removing a blank line form /etc/passwd file
cheers
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 07:10 AM
07-10-2002 07:10 AM
Re: file owner is number not name
All files have numbers for users and groups. The ll command decodes these numbers by searching through the passwd file to associate the number with a user ID (same for group file). If no match, then the number is shown.
Bill Hassell, sysadmin