when I startup the db ,alert.log shows these messages:
Starting ORACLE instance (normal)
Cannot determine all dependent dynamic libraries for /proc/self/exe
Unable to find dynamic library libocr10.so in search paths
RPATH = /ade/aime1_build2101/oracle/has/lib/:/ade/aime1_build2101/oracle/lib/:/ade/aime1_build2101/oracle/has/lib/:
LD_LIBRARY_PATH = /opt/ora10g/product/10.2.0/db_1/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/
The default library directories are /lib and /usr/lib
Unable to find dynamic library libocrb10.so in search paths
Unable to find dynamic library libocrutl10.so in search paths
Unable to find dynamic library libocrutl10.so in search paths
metalink,ID 371408.1 ,I think this maybe a bug.the solution is:
------------------------------------------------------------------------------------------
Start the Oracle database by using the userid that owns the Oracle binaries/software , if you are starting the Oracle database by the userid other than owner of the Oracle binaries /software.
OR
You can safely ignore the error message in the alert.log.
OR
You can execute the following steps of implement the solution if LD_LIBRARY_PATH is NOT set or set incorrectly then
Include the $ORACLE_HOME/lib in the LD_LIBRARY_PATH
% export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
OR
Copy the files libocrb10.so and libocrutl10.so from $ORACLE_HOME/lib to /usr/lib. You need superuser privileges to be able to do this step.
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/22123669/viewspace-672063/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/22123669/viewspace-672063/
当启动Oracle数据库时,出现无法找到动态库文件的错误信息。本文提供了几种解决方案,包括使用正确的用户身份启动数据库、忽略错误消息或配置LD_LIBRARY_PATH环境变量。
2126

被折叠的 条评论
为什么被折叠?



