Navigation bar

Home
Back to the front page
Blog Map
All posts, by category

Use lateral arrows to navigate through posts

Posts tagged compile

MySQL in a custom dir on Linux

Linux MySQL

If you have installed MySQL server in the standard directory /usr/local/mysql, do not read this post. Else, you may want to know

how to use MySQL shared libraries on your Linux system

For organization purposes, I have installed MySQL in /home dir (which is a separate partition), precisely in /home/server/mysql. Thus, I keep mysql/var, directory (which contains databases) safe from heavy system changes.

My system did not recognized the shared library libmysqlclient, that is under /home/server/mysql/lib/mysql.
How do you tell Linux “Hey, you will find the library here, go and use it”?

Just edit the file /etc/ld.so.conf and add the path to your library. Then, reboot or give this command:

ldconfig -v

to register new libraries.

Read the rest of this article … »