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
Now run ldconfig
Kuldeep
!! Enjoy Linux
** : 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