Orchadmin issue

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
reachmexyz
Premium Member
Premium Member
Posts: 296
Joined: Sun Nov 16, 2008 7:41 pm

Orchadmin issue

Post by reachmexyz »

Hello All.
when i try to run the orchadmin command, i am getting the following issue
i typed as
1) cd $DSPARALLEL
2) ./orchadmin
and i got the below error.
ld.so.1: orchadmin: fatal: liborchgeneralsun4.so: open failed: No such file or directory

Below is the .profile
APT_CONFIG_FILE=/opt/IBM/InformationServer/Server/Configurations
export APT_CONFIG_FILE;
APT_ORCHHOME=/opt/IBM/InformationServer/Server/PXEngine
export APT_ORCHHOME;
ORACLE_HOME=/opt/oracli/u01/product/ora9i
export ORACLE_HOME;
PROJ_DIR=/dsProjects/data/CAPRID
export PROJ_DIR;
DSHOME=/opt/IBM/InformationServer/Server/DSEngine
export DSHOME;
DSPARALLEL=/opt/IBM/InformationServer/PXEngine/bin
export DSPARALLEL
cd $DSHOME
. ./dsenv



ld.so.1: orchadmin: fatal: liborchgeneralsun4.so: open failed: No such file or directory
nagarjuna
Premium Member
Premium Member
Posts: 533
Joined: Fri Jun 27, 2008 9:11 pm
Location: Chicago

Post by nagarjuna »

APT_CONFIG_FILE=/opt/IBM/InformationServer/Server/Configurations/default.apt

Point the APT_CONFIG_FILE to correct file .
Nag
reachmexyz
Premium Member
Premium Member
Posts: 296
Joined: Sun Nov 16, 2008 7:41 pm

Post by reachmexyz »

nagarjuna wrote:APT_CONFIG_FILE=/opt/IBM/InformationServer/Server/Configurations/default.apt

Point the APT_CONFIG_FILE to correct file .
I have pointed the APT_CONFIG_FILE to right file. But still got the same error


ld.so.1: orchadmin: fatal: liborchgeneralsun4.so: open failed: No such file or directory
Killed
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Have you executed dsenv script? Is LD_LIBRARY_PATH correct?
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
reachmexyz
Premium Member
Premium Member
Posts: 296
Joined: Sun Nov 16, 2008 7:41 pm

Post by reachmexyz »

ray.wurlod wrote:Have you executed dsenv script? Is LD_LIBRARY_PATH correct?

I have already executed the dsenv script in .profile. I am working on this datastage from a long time. So i dont think LD_LIBRARY_path is pointing to a wrong path. Do i need to execute dsenv again eventhough it was executed in my .profile
reachmexyz
Premium Member
Premium Member
Posts: 296
Joined: Sun Nov 16, 2008 7:41 pm

Post by reachmexyz »

reachmexyz wrote:
ray.wurlod wrote:Have you executed dsenv script? Is LD_LIBRARY_PATH correct?

I have already executed the dsenv script in .profile. I am working on this datastage from a long time. So i dont think LD_LIBRARY_path is pointing to a wrong path. Do i need to execute dsenv again eventhough it was executed in my .profile
Below is the LD_LIBRARY_PATH executed in my .profile.

LD_LIBRARY_PATH=/opt/IBM/InformationServer/ASBNode/apps/jre/lib/sparc/client:/opt/IBM/InformationServer/ASBNode/apps/jre/lib/sparc:/opt/IBM/InformationServer/ASBNode/lib/cpp:/opt/IBM/InformationServer/ASBNode/apps/proxy/cpp/sunos-all-sparc:/opt/IBM/InformationServer/Server/branded_odbc/lib:/opt/IBM/InformationServer/Server/DSComponents/lib:/opt/IBM/InformationServer/Server/DSComponents/bin:/opt/IBM/InformationServer/Server/DSEngine/lib:/opt/IBM/InformationServer/Server/DSEngine/uvdlls:/opt/IBM/db2/V9/lib32:/opt/CA/SharedComponents/lib:/opt/oracli/u01/product/ora9i/lib32
+ export LD_LIBRARY_PATH
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

... and is liborchgeneralsun4.so in any of those directories?
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
reachmexyz
Premium Member
Premium Member
Posts: 296
Joined: Sun Nov 16, 2008 7:41 pm

Post by reachmexyz »

ray.wurlod wrote:... and is liborchgeneralsun4.so in any of those directories?
Interestingly i didnt find liborchgeneralsun4.so in the directories mentioned in LD_LIBRARY_PATH. What should i do next. I am a developer, not an admin. So i am not aware of all this information.
Where should i go next to get the required file?
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Find liborchgeneralsun4.so and include its parent directory in your shared library search list (the value of LD_LIBRARY_PATH). I suggest you use the find command to search for the liborchgeneralsun4.so file.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
deepak.hsbc
Participant
Posts: 39
Joined: Sun Apr 15, 2007 11:30 pm

Post by deepak.hsbc »

Well..I had the simillar issue but it worked when i ran following in series it worked,you can try this out !!

$ cd `cat /.dshome`
$ . ./dsenv
$ export LIBPATH=$LIBPATH:$APT_ORCHHOME/lib
$ export PATH=$PATH:$APT_ORCHHOME/bin
$ export APT_CONFIG_FILE=/opt/tools/ds/Ascential/DataStage/Configurations/XXXNode.apt


Then type this command to see if orchadmin works -
orchadmin -help
orchadmin -check [It should give zero warnings]
"Books are as useful to a stupid person as a mirror is useful to a Blind person."
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

That's almost certainly because your liborchgeneralsun4.so is in $APT_ORCHHOME/lib directory.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply