Linux - Error while loading shared libraries oracle, Solution for error while loading shared libraries

Error while loading shared libraries oracle

When you receive this error first check you have set oracle $ORACLE_HOME, $PATH and $LD_LIBRARY_PATH correct

Check if the $ORACLE_HOME, $PATH and $LD_LIBRARY_PATH are set right
 # echo $ORACLE_HOME
 # echo $PATH
 # echo $LD_LIBRARY_PATH

Set Path and Library path
 # export LD_LIBRARY_PATH=$ORACLE_HOME/lib

 # export PATH=$PATH:$ORACLE_HOME/bin

 oracle> $ORACLE_HOME/bin/relink all
then try to relink oracle binaries.

check permission of oracle home and reset its permission if required
 # chmod -R 755 $ORACLE_HOME/
It worked for me after reseting the path correctly, if the issue persist even after setting all oracle path then re-install oracle if possible.

The topic on Linux - Error while loading shared libraries oracle is posted by - Guru

Hope you have enjoyed, Linux - Error while loading shared libraries oracleThanks for your time

Tech Bluff