ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » IBM MQ Installation/Configuration Support » Can't find path for shared library: libmqmzse.sl

Post new topic  Reply to topic
 Can't find path for shared library: libmqmzse.sl « View previous topic :: View next topic » 
Author Message
MQAltaf
PostPosted: Fri Dec 07, 2007 2:01 am    Post subject: Can't find path for shared library: libmqmzse.sl Reply with quote

Centurion

Joined: 10 Feb 2005
Posts: 119

Hi,

We are trying to run an application and receive the following error

/live/prompts/mq2file.exeb /live/parms/transtab.parm
/usr/lib/dld.sl: Can't find path for shared library: libmqmzse.sl
/usr/lib/dld.sl: No such file or directory
ARIES32: Core file for PA32 application saved to /home/opcdb/core.emptyq
/live/prompts/mq2file.exeb[71]: 16459 Abort(coredump)
Cleardown of Middleware Queue Failed

The app being run has been recompiled againt the MQ6 libraries and ran successfuly in the dev environment. We migrated to MQ6.0.2.1 lastnight from MQ5.3

libmqmzse.sl doesnt exist but libmqmzse.so does.

Thanks in advance
Back to top
View user's profile Send private message
Gaya3
PostPosted: Fri Dec 07, 2007 2:09 am    Post subject: Reply with quote

Jedi

Joined: 12 Sep 2006
Posts: 2493
Location: Boston, US

Hi

Usually the shared library files will be in this directory.
/opt/mqm/lib,

if its not there, then apply a fix to it, (Whats the current fixpack of mq )

if yes, verify and set the SHLIB_PATH also.

Which OS you are using...


Regards
Gayathri
_________________
Regards
Gayathri
-----------------------------------------------
Do Something Before you Die
Back to top
View user's profile Send private message
MQAltaf
PostPosted: Fri Dec 07, 2007 2:12 am    Post subject: Reply with quote

Centurion

Joined: 10 Feb 2005
Posts: 119

I have checked /opt/mqm/lib and can only see libmqmzse.so

Name: WebSphere MQ
Version: 6.0.2.1
CMVC level: p600-201-070329
BuildType: IKAP - (Production)

Can you tell me how i set SHLIB_PATH pls
Back to top
View user's profile Send private message
MQAltaf
PostPosted: Fri Dec 07, 2007 2:20 am    Post subject: Reply with quote

Centurion

Joined: 10 Feb 2005
Posts: 119

$ echo $SHLIB_PATH
/opt/cobol/lib::/opt/CA/SharedComponents/lib
Back to top
View user's profile Send private message
Gaya3
PostPosted: Fri Dec 07, 2007 2:26 am    Post subject: Reply with quote

Jedi

Joined: 12 Sep 2006
Posts: 2493
Location: Boston, US

Hi

So its(SHLIB_PATH) not pointing to mq libraries at all,

AFAIK, libmqmzse.sl must have to be in the /opt/mqm/lib directory or /usr/mqm/lib which ever it is.


Regards
Gayathri
_________________
Regards
Gayathri
-----------------------------------------------
Do Something Before you Die
Back to top
View user's profile Send private message
MQAltaf
PostPosted: Fri Dec 07, 2007 2:38 am    Post subject: Reply with quote

Centurion

Joined: 10 Feb 2005
Posts: 119

SHLIB_PATH isnt pointing to any mq libraries

/opt/mqm/lib
-r-xr-xr-x 1 mqm mqm 8144 Mar 29 2007 libmqmzse.so

No libmqmzse.sl
Back to top
View user's profile Send private message
Philip Morten
PostPosted: Fri Dec 07, 2007 2:55 am    Post subject: Re: Can't find path for shared library: libmqmzse.sl Reply with quote

Master

Joined: 07 Mar 2002
Posts: 230
Location: Hursley Park

MQAltaf wrote:
Hi,

We are trying to run an application and receive the following error

/live/prompts/mq2file.exeb /live/parms/transtab.parm
/usr/lib/dld.sl: Can't find path for shared library: libmqmzse.sl
/usr/lib/dld.sl: No such file or directory
ARIES32: Core file for PA32 application saved to /home/opcdb/core.emptyq
/live/prompts/mq2file.exeb[71]: 16459 Abort(coredump)
Cleardown of Middleware Queue Failed

The app being run has been recompiled againt the MQ6 libraries and ran successfuly in the dev environment. We migrated to MQ6.0.2.1 lastnight from MQ5.3

libmqmzse.sl doesnt exist but libmqmzse.so does.

Thanks in advance


It looks as if you are mixing PA-RISC and IA-64 - ARIES is the emulator for PA-RISC on Itanium systems - .sl library suffix is PA-RISC , .so for IA64.

WebSphere MQ does not support running PA-RISC code on the IA64.
_________________
Philip Morten

The postings on this site are my own and do not necessarily represent IBM's positions, strategies or opinions.
Back to top
View user's profile Send private message
MQAltaf
PostPosted: Fri Dec 07, 2007 3:18 am    Post subject: Reply with quote

Centurion

Joined: 10 Feb 2005
Posts: 119

Hi,

Im certain that MQ for the correct HP-UX version was installed

[LIVE] /live/dman/bin [177] $ uname -r
B.11.23

We installed

WebSphere MQ for HP-UX Itanium V6.0.1 - German English International Spanish French Italian Japanese Korean Portuguese Brazilian Chinese Simplified Chinese Traditional

Product description

File name C87RVML.tar.Z

Platform(s) HP-UX 11.x


Which i assume is correct?
Back to top
View user's profile Send private message
mvic
PostPosted: Fri Dec 07, 2007 3:23 am    Post subject: Reply with quote

Jedi

Joined: 09 Mar 2004
Posts: 2080

MQAltaf wrote:
Im certain that MQ for the correct HP-UX version was installed

Please post output from:
Code:
file YOURPROGRAM
chatr YOURPROGRAM

... where YOURPROGRAM is the full path you are using to run your program. Perhaps what's wrong here is that the app was build for PA-RISC.
Back to top
View user's profile Send private message
Philip Morten
PostPosted: Fri Dec 07, 2007 3:25 am    Post subject: Reply with quote

Master

Joined: 07 Mar 2002
Posts: 230
Location: Hursley Park

MQAltaf wrote:
Hi,

Im certain that MQ for the correct HP-UX version was installed

[LIVE] /live/dman/bin [177] $ uname -r
B.11.23

We installed

WebSphere MQ for HP-UX Itanium V6.0.1 - German English International Spanish French Italian Japanese Korean Portuguese Brazilian Chinese Simplified Chinese Traditional

Product description

File name C87RVML.tar.Z

Platform(s) HP-UX 11.x


Which i assume is correct?


Yes I'm sure you have installed the correct version - that's why you have .so libraries rather than .sl, but it looks as if you application was built on PA-RISC, is that possible?
_________________
Philip Morten

The postings on this site are my own and do not necessarily represent IBM's positions, strategies or opinions.
Back to top
View user's profile Send private message
MQAltaf
PostPosted: Fri Dec 07, 2007 3:27 am    Post subject: Reply with quote

Centurion

Joined: 10 Feb 2005
Posts: 119

Hi,

Not sure of the app was built for PA-RISC as the same programs work fine on the DEV server
Back to top
View user's profile Send private message
Philip Morten
PostPosted: Fri Dec 07, 2007 3:30 am    Post subject: Reply with quote

Master

Joined: 07 Mar 2002
Posts: 230
Location: Hursley Park

MQAltaf wrote:
Hi,

Not sure of the app was built for PA-RISC as the same programs work fine on the DEV server

Can you do file and chatr on the app program?
_________________
Philip Morten

The postings on this site are my own and do not necessarily represent IBM's positions, strategies or opinions.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » IBM MQ Installation/Configuration Support » Can't find path for shared library: libmqmzse.sl
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.