I'm trying to setup WAS so that when I run adminserver.sh , the appserver will see the mq jars located in /opt/mqm/java/lib (on a Solaris box).
I edited the LD_LIBRARY_PATH variable in the adminserver.sh script as shown below:
LD_LIBRARY_PATH=$WAS_LIBPATH:$LD_LIBRARY_PATH
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/mqm/java/lib
export LD_LIBRARY_PATH ;;
But on restarting the server , I get the following in the output :
Java Library path = /opt/WebSphere/java/jre/bin/../lib/sparc/client:/opt/WebSphe
re/java/jre/bin/../lib/sparc::/opt/WebSphere/bin:/opt/app/oracle/product/9.2.0//
jdbc/lib::/usr/lib
The mq jars are not being picked up. Running the application confirms that as I get a NoClassDef error for one of the mq series jars.
What am I missing?
jeff