MYSQL: version of libmysqlclient_16 not defined in libmysqlclient.so.16 file with link to link

When I try to use:

mysqldump -u st -p st mydb > /tmp/st.sql 

... to reset the database, the following error occurs:

mysqldump: move error: mysqldump: symbol _hash_init, version of libmysqlclient_16 is not defined in the file libmysqlclient.so.16 with reference to the link

Why? and how to fix it?

+4
source share
1 answer

In the same problem, there is a problem with debian squeeze when installing gdal1.8.0 from the experimental repository. I really need the right answer to this!

Fixed in Debian compression as follows:

  • upgrade apt sources.list:

apt-get install -t unstable libmysqlclient16

When this is done, it will work!

+1
source

All Articles