您的位置:首页 > 运维架构 > Linux

Linux error while loading shared libraries的解決步骤

2013-12-06 17:09 661 查看
Linux error while loading shared libraries的解決方法

今天给在linux下运行程序时升级时,重启Apache 出现

error while loading shared libraries这种错误,之前Apache一直都运行正常,仔细研究了下终于找到的了解决方案,写下来备份下。

./tests: error while loading shared libraries: xxx.so.0:cannot open shared object file: No such file or directory

出现这类错误表示,系统不知道xxx.so放在哪个目录下,这时候就要在/etc/ld.so.conf中加入xxx.so所在的目录。

一般而言,有很多的so会存放在/usr/local/lib这个目录底下,去这个目录底下找,果然发现自己所需要的.so文件。

所以,在/etc/ld.so.conf中加入/usr/local/lib这一行,保存之后,再运行:/sbin/ldconfig –v更新一下配置即可。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  LINUX gcc 编译器 C++