解决error while loading shared libraries: libmysqlclient.so.18

我的mysql是二进制包,位置是/usr/local/mysql下,然后我看了下/usr/local/mysql/lib/下是有libmysqlclient.so.18这个文件的.

解决办法:

1.先确认/usr/local/mysql/lib/下是否有libmysqlclient.so.18这个文件.
ll /usr/local/mysql/lib/|grep libmysqlclient.so.18

2.修改ld.so.conf文件
echo "/usr/local/mysql/lib" >>/etc/ld.so.conf

然后执行ldconfig使其生效.

原文来自:blog.slogra.com

时间: 2024-10-30 14:21:47

解决error while loading shared libraries: libmysqlclient.so.18的相关文章

解决error while loading shared libraries: libmysqlclient.so.18的错误

风信网(ithov.com) 原创文章,测试环境php-fpm在安装后之后,启动的时候发现报错信息error while loading shared libraries: libmysqlclient.so.18,原来少了libmysqlclient.so.18这个共享文件,我们来检查一下 &http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; [root@localhost php]# sbin/php-fpm st

解决error while loading shared libraries: libpcre.so.1的错误

解决 error while loading shared libraries: libpcre.so.1的错误 /usr/local/webserver/nginx/sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory 解决方法: 32位系统 [root@sever lib]# ln -s /usr/loc

解决:/home/catia/android-sdks/platform-tools/aapt: error while loading shared libraries: libz.so.1: c

/home/catia/android-sdks/platform-tools/aapt: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory 解决办法来源于: http://askubuntu.com/questions/147400/problems-with-eclipse-and-android-sdk 输入sudo apt-g

error while loading shared libraries: xxx.so.x" 错误的原因和解决办法

今天在执行一个protobuf程序时,提示error while loading shared libraries: libprotobuf.so.8: cannot open shared object file: No such file or directory错误.google了一下,是由于找不到lib这个文件. 解决办法: 一般我们在Linux下执行某些外部程序的时候可能会提示找不到共享库的错误, 比如:   tmux: error while loading shared libra

安装ImageMagick出现error while loading shared libraries的解决方法_php技巧

本文实例讲述了安装安装ImageMagick出现error while loading shared libraries的解决方法.分享给大家供大家参考.具体解决方法如下: 运行程序时,如遇到像下列这种错误: ./tests: error while loading shared libraries: xxx.so.0:cannot open shared object file: No such file or directory 那就表示系统不知道xxx.so 放在哪个目录下. 这个时候就要

error while loading shared libraries: xxx.so.x"错误的原因和解决办法

一般我们在Linux下执行某些外部程序的时候可能会提示找不到共享库的错误, 比如:   tmux: error while loading shared libraries: libevent-1.4.so.2: cannot open shared object file: No such file or directory 原因一般有两个, 一个是操作系统里确实没有包含该共享库(lib*.so.*文件)或者共享库版本不对, 遇到这种情况那就去网上下载并安装上即可.  另外一个原因就是已经安装

Linux下error while loading shared libraries错误的解決方法

在linux下运行程序时,发现了error while loading shared libraries这种错误,一时间不知道解决办法,在网上搜索,终于解决了: ./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

sqlplus: error while loading shared libraries: /u01/app/lib/libclntsh.so.11.1

成功安装了Oracle 11g后,使用sqlplus登录数据库时遇到下面错误: [oracle@DB-Server ~]$ sqlplus / as sysdba   sqlplus: error while loading shared libraries: /u01/app/lib/libclntsh.so.11.1: cannot restore segment prot after reloc: Permission denied 这个错误是由于SELINUX引起的,因为你在安装过程中没

svnserve:error while loading shared libraries: libaprutil-1.so.0: cannot open shared object file: No such file or directory

使用yum安装svn 开启svnserver是遇到如下问题: svnserve:error while loading shared libraries: libaprutil-1.so.0: cannot open shared object file: No such file or directory 缺少了apache的apr-util的支持. 于是再安装一下yum install -y apr-util就好了.