error while loading shared libraries解决办法

来源:互联网 发布:java异常分类及处理 编辑:程序博客网 时间:2024/03/29 16:53

error while loading shared libraries: librdkafka++.so.1: cannot open shared object file: No such file or directory 解决办法


1,cd /etc/ 

2,sudo ldconfig


///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

/*********************** over****************************/

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


出错如下:

主要错误:error while loading shared libraries: libboost_regex.so.1.51.0: cannot open shared object file: No such file or directory

错误过程如下:

[cpp] view plain copy
  1. [root@node07 C++]# ll  
  2. 总用量 960  
  3. -rw-r--r--. 1 root root  90915  9月 15 20:47 1.html  
  4. -rw-r--r--. 1 root root  86714  9月 15 20:48 2.html  
  5. -rw-r--r--. 1 root root  89032  9月 15 20:49 3.html  
  6. -rw-r--r--. 1 root root    239  9月 16 10:40 main.cpp  
  7. -rw-r--r--. 1 root root   5684  9月 16 10:48 main.o  
  8. -rw-r--r--. 1 root root    320  9月 16 10:28 Makefile  
  9. -rwxr-xr-x. 1 root root 256884  9月 16 10:48 target  
  10. -rw-r--r--. 1 root root      0  9月 15 20:49 test.txt  
  11. -rw-r--r--. 1 root root   4365  9月 15 20:35 TextExtractor.cpp  
  12. -rw-r--r--. 1 root root   1710  9月 15 20:58 TextExtractor.h  
  13. -rw-r--r--. 1 root root 421412  9月 16 10:48 TextExtractor.o  
  14. [root@node07 C++]# ./target  
  15. ./target: error while loading shared libraries: libboost_regex.so.1.51.0: cannot open shared object  
  16. file: No such file or directory  

那就表示系统不知道xxx.so放在哪个目录下,这个时候就要在/etc/ld.so.conf中加入xxx.so所在的目录。首先查找存在的目录,结果为/usr/local/boost_1_51_0/~/boost_install/lib/,具体操作如下:

[cpp] view plain copy
  1. [root@node07 C++]# find / -name libboost_regex.*  
  2. /usr/local/boost_1_51_0/bin.v2/libs/regex/build/gcc-4.4.5/release/threading-multi/libboost_regex.so.1.51.0  
  3. /usr/local/boost_1_51_0/bin.v2/libs/regex/build/gcc-4.4.5/release/link-static/threading-multi/libboost_regex.a  
  4. /usr/local/boost_1_51_0/~/boost_install/lib/libboost_regex.so.1.51.0  
  5. /usr/local/boost_1_51_0/~/boost_install/lib/libboost_regex.so  
  6. /usr/local/boost_1_51_0/~/boost_install/lib/libboost_regex.a  

一般而言,有很多so档会在/usr/local/lib这个目录下,所以在/etc/ld.so.conf中加入/usr/local/lib这一行,可以解决此问题。

将/etc/ld.so.conf存档后,还要执行/etc/ldconfig 来更新一下才会生效。

[cpp] view plain copy
  1. [root@node07 C++]# cd /etc/  
  2. [root@node07 etc]# ldconfig  

再次运行target 无错误。
0 0