Issue
I installed oracle 12 in debian and i have a problem with the shared libraries Can someone give me the contents of the file 'libclntsh.so.12.1' ? Can someone help me ? thanks in advance
Solution
try to find 'libclntsh.so' find / -name "libclntsh.so*" Maybe you can do a soft link to libclntsh.so
Possibly you should to specify PATH
— and also ORACLE_HOME
and LD_LIBRARY_PATH
— so that binary knows where to find binaries.
Something like
export LD_LIBRARY_PATH=/usr/lib/oracle/12.1/client/lib/
Answered By - Valeriy Solovyov