Error while loading shared libraries: libcell11.so: cannot open shared object file: No such file or directory

When I was executing the orion for testing the I/O performance I faced this error

“./orion: error while loading shared libraries: libcell11.so: cannot open shared object file: No such file or directory”

[oracle@node1 bin]$ ./orion -run oltp -testname foo
./orion: error while loading shared libraries: libcell11.so: cannot open shared object file: No such file or directory
[oracle@node1 bin]$ 
[oracle@node1 bin]$ ldd ./orion
        libcell11.so => not found
        libaio.so.1 => /usr/lib64/libaio.so.1 (0x00002b17f8b39000)
        libdl.so.2 => /lib64/libdl.so.2 (0x0000003aaf400000)
        libm.so.6 => /lib64/libm.so.6 (0x0000003aaf000000)
        libpthread.so.0 => /lib64/libpthread.so.0 (0x0000003aaf800000)
        libnsl.so.1 => /lib64/libnsl.so.1 (0x0000003ab6800000)
        libc.so.6 => /lib64/libc.so.6 (0x0000003aaec00000)
        /lib64/ld-linux-x86-64.so.2 (0x0000003aae800000)

To solve this

[oracle@node1 bin]$ export LD_LIBRARY_PATH=$ORACLE_HOME/lib/
[oracle@node1 bin]$
[oracle@node1 bin]$ ldd ./orion
        libcell11.so => /u01/app/oracle/product/11.2.0/dbhome_2/lib/libcell11.so (0x00002b3b25d5f000)
        libaio.so.1 => /usr/lib64/libaio.so.1 (0x00002b3b25ed9000)
        libdl.so.2 => /lib64/libdl.so.2 (0x0000003aaf400000)
        libm.so.6 => /lib64/libm.so.6 (0x0000003aaf000000)
        libpthread.so.0 => /lib64/libpthread.so.0 (0x0000003aaf800000)
        libnsl.so.1 => /lib64/libnsl.so.1 (0x0000003ab6800000)
        libc.so.6 => /lib64/libc.so.6 (0x0000003aaec00000)
        /lib64/ld-linux-x86-64.so.2 (0x0000003aae800000)

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s