Operating System - HP-UX
1753797 Members
7289 Online
108799 Solutions
New Discussion юеВ

Re: Sybase ASE 11.9.2 on HP-UX 11.11

 
KPF
Occasional Advisor

Sybase ASE 11.9.2 on HP-UX 11.11

SHLIB_PATH and SYBASE environment variables are defined and exported. Operating system shared libraries are all present. Errors when trying to run svrbuild,it show " /usr/lib/dld.sl: Can't open shared library: /remote/svrhpeb1_bld1/main/conn/lib/libinitl.sl /usr"
6 REPLIES 6
Muthukumar_5
Honored Contributor

Re: Sybase ASE 11.9.2 on HP-UX 11.11

I hope you have not set the SHLIB_PATH variable properly. Same type of error as,

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=68546

--
Muthu
Easy to suggest when don't know about the problem!
Arunvijai_4
Honored Contributor

Re: Sybase ASE 11.9.2 on HP-UX 11.11

Hello,

Can you post your SHLIB_PATH ? It is a problem with shared libaray not available in SHLIB_PATH.

# echo $SHLIB_PATH

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
KPF
Occasional Advisor

Re: Sybase ASE 11.9.2 on HP-UX 11.11

Hi,
I type echo $SHLIB_PATH, but nothing come out. What can I do? Thanks.
KPF
Occasional Advisor

Re: Sybase ASE 11.9.2 on HP-UX 11.11

Hi,

Here is a part of .profile file. Thanks.

# Set up the shell variables:
EDITOR=vi
export EDITOR

# Set up Sybase environment variables;
SYBASE=/sybase
export SYBASE
PATH=$SYBASE/bin:$SYBASE/install:$PATH;
export PATH
SHLIB_PATH=$SYBASE/lib;
export SHLIB_PATH
alias syb119="isql -Usa -SBCHKG01"
alias findbo="isql -UFINDBO -SBCHKG01"
alias bakdir="cd /datadump/bchkg01"
alias admin="cd /kwapps/fin752/appserv"
alias golog="cd /kwapps/bchkg01/install"
PSADM=/kwapps/fin752/appserv
export PSADM

Eric Antunes
Honored Contributor

Re: Sybase ASE 11.9.2 on HP-UX 11.11

Hi KPF,

Try to add "/usr/lib" in SHLIB_PATH:

...
SHLIB_PATH=$SYBASE/lib:/usr/lib
export SHLIB_PATH
...

PS: I think you don't need the ";" at the end of the variables substitution...

Best Regards,

Eric Antunes
Each and every day is a good day to learn.
KPF
Occasional Advisor

Re: Sybase ASE 11.9.2 on HP-UX 11.11

It's also the same! What should I do?