- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Glance fails and coredumps?
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
09-28-2003 07:48 PM
09-28-2003 07:48 PM
Glance fails and coredumps?
/usr/lib/dld.sl: Unresolved symbol: [Vtable]key:__dt__21__versioned_type_infoFv
(data) from /opt/perf/lib/libnums.sl
Abort(coredump)
thsi is running HPUX 10.20, but has worked fine for years.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2003 07:56 PM
09-28-2003 07:56 PM
Re: Glance fails and coredumps?
strings core
See what if anything useful is in there.
Get out your Application CD and isntall the latest version of Glance.
Get out your old pathes and make sure you are properly patched.
If none of this works, take a look at filesize and checksum on /opt/perf/lib/libnums.sl and consider copying it in from another 10.20 system.
Long run: Being on 10.20 is a bad place to be. Plan an upgrade.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2003 08:00 PM
09-28-2003 08:00 PM
Re: Glance fails and coredumps?
Probably the .sl file got updated with that latest installation.
Revert on any recent installations like Measureware.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2003 08:01 PM
09-28-2003 08:01 PM
Re: Glance fails and coredumps?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2003 08:02 PM
09-28-2003 08:02 PM
Re: Glance fails and coredumps?
Check if you have the same versions running for measureware and glance,
# perfstat -v
http://www5.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&admit=552267591+1064822362199+28353475&docId=200000066940217
Hope it helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2003 08:03 PM
09-28-2003 08:03 PM
Re: Glance fails and coredumps?
Abort(coredump)
The message says that there was a reference to x() found in libnums.sl, but neither the
executable nor one of the shared libraries contain it.
Usually there are two reasons for such a problem. Either this is a versioning problem where at runtime different versions of the shared libraries are used than at build time. In general, the
first approach to resolve this problem is to get the latest versions of all used shared libraries.
Or if this is a third party program, ask the vendor if it requires certain versions of the libraries, and install them.
This problem could also be caused by a link time problem. Normally, the linker checks if
there are unsatisfied symbols, but only for executables, not for shared libraries. If a shared library references symbols from another library, but it is not linked against this library, the linker will not complain. When linking an executable against this library, but not against the
dependent library, the linker again does not check for unresolved symbols in shared libraries and does not realize that there's something missing.
You must find the missing symbol with nm(1), and put the path to the library where
you found the symbol into LD_PRELOAD before starting the program.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2003 08:11 PM
09-28-2003 08:11 PM
Re: Glance fails and coredumps?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2003 08:39 PM
09-28-2003 08:39 PM
Re: Glance fails and coredumps?
i see the symbol defined in /usr/lib/libCsup.sl . you can try running the application by setting LD_PRELOAD=/usr/lib/libCsup.sl . this _may_ lead to unpredictable behaviour though.
--
ranga