首页 / 数据库 / MySQL / OGG登陆报cannot open shared object file错误处理
1、错误现象
Linux服务器上,新安装的goldengate(OGG),使用./ggsci登陆控制台报出./ggsci: error while loading shared libraries: libnnz11.so: cannotopen shared object file: No such file or directory错误。2、原因分析
因为运行OGG的用户的没有设置LD_LIBRARY_PATH环境变量,或设置不正确所致。3、解决方法:
在.bash_profile中增加LD_LIBRARY_PATH环境变量配置信息,添加内容如下:export OGG=/u01/oggexport LD_LIBRARY_PATH=$Oracle_HOME/lib:/u01/ogg
应用新的环境变量配置:[oracle@server2 ]$ source .bash_profile4、结果
./ggsci登陆控制台成功:[oracle@server2 ~]$ source .bash_profile[oracle@server2 ~]$ cd $OGG[oracle@server2 ogg]$ ./ggsciOracle GoldenGate Command Interpreter for OracleVersion 11.1.1.1.2 OGGCORE_11.1.1.1.2_PLATFORMS_111004.2100Linux, x64, 64bit (optimized), Oracle 11g on Oct 4 2011 23:49:46Copyright (C) 1995, 2011, Oracle and/or its affiliates. All rights reserved.GGSCI (server2) 1>更多Oracle相关信息见Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12本文永久更新链接地址