- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- File ownership (iwww:191) on lib and aCC links, ia...
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-27-2006 08:23 AM
04-27-2006 08:23 AM
I noticed links in the directories /usr/lib/hp32, /usr/lib/hpux64 and /usr/include/aCC_std, as well as the links /usr/ccs/bin/cc and /usr/ccs/bin/ldd, with file ownership iwww:191 on the five ia64 11.23 machines I have.
Why would these files be owned by this user, and with a GID that is not in my group file?
These systems were each created separately.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2006 08:32 AM
04-27-2006 08:32 AM
Re: File ownership (iwww:191) on lib and aCC links, ia64, 11.23
The ownership merely reflects a coincidental match of the uid to a valid uid on your server. The gid of 191 doesn't exist on your machine, so there is no way to translate that to any group name.
You might run 'swverify' :
# swverify \*
If this doesn't expose any installation issues, you can manually change the ownership to 'bin:bin' as a matter of form.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2006 08:39 AM
04-27-2006 08:39 AM
Re: File ownership (iwww:191) on lib and aCC links, ia64, 11.23
E.g.,
lrwxr-xr-x 1 iwww 191 16 Aug 31 2005 \
/usr/lib/hpux64/libstream.so -> \
./libstream.so.1
lrwxr-xr-x 1 iwww 191 16 Aug 31 2005 \
/usr/lib/hpux64/libunwind.so -> \
./libunwind.so.1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2006 08:49 AM
04-27-2006 08:49 AM
SolutionI have seen a few very rare instances where files were delivered without standard ownership. I don't have any Itanium 11.23 systems to comment specifically, further.
As a matter of interest, you might perform the 'swverify' I suggested and then look for "invalid" user or group ids:
# find / -nouser
# find / -nogroup
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2006 09:32 AM
04-27-2006 09:32 AM
Re: File ownership (iwww:191) on lib and aCC links, ia64, 11.23
swverify revealed no problems.
find / '(' -nouser -o -nogroup ')' -xdev only showed a couple of files in my home directory that were "orphaned".
for pkg in `swlist -l product | \
awk '{print $1}'|grep -vE '^$|#'`;
do
swlist -l file $pkg | \
grep /usr/lib/hpux64/libl.so
done
showed me I was needing to look into OS-Core, and reading the INFO file on my depot server at /var/adm/sw/products/OS-Core/CORE2-64SLIB showed me this stanza:
file
path /usr/lib/hpux64/libl.so
type s
size 11
mode 0775
uid 103
gid 191
owner vpm
mtime 1079042745
link_source ./libl.so.1
and
find /var/adm/sw/products -name INFO \
-exec grep vpm /dev/null {} \;|sort |uniq
showed me that these products had the bogus uid/gid/owner problem:
OS-Core/C-KRN
OS-Core/CMDS2-AUX
OS-Core/CORE2-64SLIB
OS-Core/CORE2-SHLIBS
ProgSupport/CXX-INC
I'm very disappointed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2006 09:47 AM
04-27-2006 09:47 AM
Re: File ownership (iwww:191) on lib and aCC links, ia64, 11.23
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2006 01:56 AM
05-31-2006 01:56 AM
Re: File ownership (iwww:191) on lib and aCC links, ia64, 11.23
"We have a fix for both ownership and permissions. The change will show up when we post IC142 (scheduled for June 12) in 11.31. Starting with 0609 (11.23) and 0612 (11.11), these release streams will have the correct values."
I am glad that HP took an interest in this.