cannot open shared object file: No such file or directory
一般是找不到库,有几种方法:
-
临时方法
export LD_LIBRARY_PATH=/usr/local/mysql/lib:$LD_LIBRARY_PATH
-
本用户永久方法 把上面那个 export 写入到
.bashrc
里面。 - 所有用户永久
echo "/usr/local/lib" >> /etc/ld.so.conf ldconfig
参考: https://blog.csdn.net/wanxuexiang/article/details/84574660