Wednesday, February 23, 2011

error while loading shared libraries: libmysqlclient.so.15: cannot open shared object file

Today I was working on installing some package. After Installing the package successfully, I have just start that by typing the command whatever for that. Then I got the following error.

** : error while loading shared libraries: libmysqlclient.so.15: cannot open shared object file: No such file or directory **

So I have worked on this and found the following solution.
This error is because mysql library path is not in system library locations.

To fix the error edit /etc/ld.so.conf
#vi /etc/ld.so.conf
 
Add following line to end of the file
/usr/lib/mysql

Now run ldconfig
#ldconfig

 Kuldeep
!! Enjoy Linux







Kubernetes 1.31 || Testing the Image Volume mount feature using Minikube

With Kubernetes new version 1.31 ( https://kubernetes.io/blog/2024/08/13/kubernetes-v1-31-release/ ) there are so many features releases for...