- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Evadiscovery fails
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
11-08-2006 04:03 AM
11-08-2006 04:03 AM
Evadiscovery fails
evadiscovery -f /etc/dtsconf/mceva.conf
/usr/lib/dld.sl: Unresolved symbol: __tcerr (data) from /opt/wbem/lib/libpegcommon.1
Abort(coredump)
B8465BA A.02.00.10 HP WBEM Services for HP-UX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2006 04:14 AM
11-08-2006 04:14 AM
Re: Evadiscovery fails
Take a look a the evadiscovery command with the chatr commmand.
chatter
You may find that some of the libraries it requires are not installed. This should not happen but it happened to me the other day on a cold install.
You'll need to make sure the libraries the program needs and make sure they are on the SHLIB_PATH
Then the command should work just fine.
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
11-08-2006 04:36 AM
11-08-2006 04:36 AM
Re: Evadiscovery fails
/usr/sbin/evadiscovery:
shared executable
shared library dynamic path search:
SHLIB_PATH enabled first
embedded path enabled second /opt/wbem/lib
shared library list:
dynamic /usr/lib/libpthread.1
dynamic /usr/lib/librt.2
dynamic /opt/wbem/PA/A.02.00.04/lib/libpegclient.1
dynamic /usr/lib/libm.2
dynamic /usr/lib/libcl.2
dynamic /usr/lib/libc.2
static /usr/lib/libdld.2
I have found all libraries, still evadicovery fails with the same error.
Maciek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2006 04:38 AM
11-08-2006 04:38 AM
Re: Evadiscovery fails
Try removing and reinstalling the evadiscovery software. Make sure the OS is properly patched prior to installation.
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
11-08-2006 10:43 AM
11-08-2006 10:43 AM
Re: Evadiscovery fails
Isuggest you verify you have the required software versions and any patches for the OS, Serviceguard, and WBEM, and also make sure you have the relevant paths to shared libraries configured correctly.
If that does not help, log a callwith your local HP Response Centre
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2006 03:01 PM
11-08-2006 03:01 PM
Re: Evadiscovery fails
Use the LD_PRELOAD option while invoking the evadiscovery command.
e.g.: LD_PRELOAD="/usr/lib/libC.2 /opt/wbem/lib/libpegclient.1" evadiscovery -f /home/mceva.conf
(all in one line!)
Also modify the script "/usr/sbin/DRCheckDiskStatus" to include the LD_PRELOAD option wherever DRCheckCAEVADevGrp called.
eg:
if (( $cvmisused == 0 ))
then
LD_PRELOAD="/usr/lib/libC.2 /opt/wbem/lib/libpegclient.1" DRCheck${dataRep}DevGrp $ENV_FILE $lvmisused $vxvmisused "`echo ${LVM_VG[@]}`" "`echo ${VXVM_VG[@]}`"
else
LD_PRELOAD="/usr/lib/libC.2 /opt/wbem/lib/libpegclient.1" DRCheck${dataRep}DevGrp $ENV_FILE $lvmisused $vxvmisused $cvmisused "`echo ${LVM_VG[@]}`" "`echo ${VXVM_VG[@]}`" "`echo ${CVM_VG[@]}`"
fi
This problem will happen only in WBEM Services versions A.02.00.09 or later. It does not show up in earlier versions. Downgrading WBEM might also be an option.
Carsten
In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move. -- HhGttG
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2006 06:01 PM
11-08-2006 06:01 PM
Re: Evadiscovery fails
Thanks a lot, this realy helped. Thank you all for spending your time on solving my problem.
Maciek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-08-2006 06:04 PM
11-08-2006 06:04 PM
Re: Evadiscovery fails
e.g.: LD_PRELOAD="/usr/lib/libC.2 /opt/wbem/lib/libpegclient.1" evadiscovery -f /home/mceva.conf