Forum OpenACS Q&A: Re: Installing Oracle 8.1.7 on Red Hat 9

Collapse
Posted by Janine Ohmer on
Dang. I got the listener to start; I had overlooked copying tnslsnrO to tnslsnr. But same libskgxp8.so error from svrmgrl. I get it from sqlplus, too.

Neither of them are linking it in directly:

[oracle@abyssinian bin]$ ldd svrmgrl
        libwtc8.so => /export/oracle/product/8.1.7/lib/libwtc8.so (0xb75e8000)
        libclntsh.so.8.0 => /export/oracle/product/8.1.7/lib/libclntsh.so.8.0 (0xb7075000)
        libdl.so.2 => /lib/libdl.so.2 (0xb7072000)
        libm.so.6 => /lib/libm.so.6 (0xb7050000)
        libpthread.so.0 => /lib/libpthread.so.0 (0xb6ffd000)
        libc.so.6 => /lib/libc.so.6 (0xb6ec1000)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0xb75eb000)
[oracle@abyssinian bin]$ ldd sqlplus
        libclntsh.so.8.0 => /export/oracle/product/8.1.7/lib/libclntsh.so.8.0 (0xb7077000)
        libwtc8.so => /export/oracle/product/8.1.7/lib/libwtc8.so (0xb7075000)
        libdl.so.2 => /lib/libdl.so.2 (0xb7072000)
        libm.so.6 => /lib/libm.so.6 (0xb7050000)
        libpthread.so.0 => /lib/libpthread.so.0 (0xb6ffd000)
        libc.so.6 => /lib/libc.so.6 (0xb6ec1000)
        /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0xb75eb000)
I checked all of those libraries, and the ones they include, and I never found it. Things that make you go hmm.....
Collapse
Posted by Bruno Mattarollo on
Janine,

I just did an "strace -fF -o strace.out svrmgrl" and then checked on the "strace.out" file and I can't see any reference (not even file not found) to libsk* ... Can you do an strace and see when it's loading (or trying to load it?) and where it's looking for it?

/B