Jump to content

libmysqlclient.so.15 under Wheezy 7.0 - 64bit


snepel

Recommended Posts

Hey im german but i write in english ;P

i try to get mysql working for MTA Server under Wheezy 7.0 64bit system.

in /lib32 i can found the libreadline.so.5 and libreadline.so.5.2

with the command

dpkg -i *.deb 

i have automaticly install libmysqlclient.so.15 under /usr/lib

i try to link it to fix my problem with...

ln -s /usr/lib/libmysqlclient.so.15 /usr/lib32/libmysqlclient.so.15 

but it dont work : /

MODULE: Unable to find modueles/mta_mysql.so (libmysqlclient.so.15: wrong ELF class: ELFCLASS64

also i have check the modules/mta_mysql.so and reinstall it.

i dont have a idea what i can do...

the MTA Server work correctly, i only ha a problem with the mysql connection under MTA (other games run correctly with mysql).

i hope someone can help me

Link to comment
  • MTA Team

because you are trying to use a 64bit library with a 32bit executable. You need to install the 32 bit library. In order to do this, first make sure your install supports multiarch, if you have not yet done so, execute the following command as root :

dpkg --add-architecture i386 

Update your cache so that it also knows about 32bit packages:

apt-get update 

After this you can add 32bit libraries as follows:

apt-get install libmysqlclient18:i386 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...