bin/postconf: error while loading shared libraries: libmysqlclient

今天在编译安装postfix的时候
make install 出现如下错误
bin/postconf: error while loading shared libraries: libmysqlclient.so.18: cannot open shared object 

原因:mysql在进行编译安装的时候,没有加入共享库
vim /etc/ld.so.conf.d/mysql.conf
/usr/lcoal/mysql/lib(添加的这一行为你安装mysql时候的位置)
ldconfig -v 
make install 就可以了
原文地址:https://www.cnblogs.com/huwentao/p/6999172.html