[Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such file -
nutzkung69 - 13.09.2009
i run server
code in server_log
Код:
[17:57:51]
[17:57:51] Server Plugins
[17:57:51] --------------
[17:57:51] Loading plugin: sampmysql.so
[17:57:51] Failed (libmysqlclient.so.15: cannot open shared object file: No such file or directory)
[17:57:51] Loaded 0 plugins.
plase help i
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such file -
Meester Proper - 13.09.2009
This error shows up if you using 64 Bit Linux, this error can't be fixed.
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such file -
Woet - 13.09.2009
Quote:
Originally Posted by Meester Proper
This error shows up if you using 64 Bit Linux, this error can't be fixed.
|
Please only reply if you know what you are talking about.
Quote:
Originally Posted by nutzkung69
i run server
code in server_log
Код:
[17:57:51]
[17:57:51] Server Plugins
[17:57:51] --------------
[17:57:51] Loading plugin: sampmysql.so
[17:57:51] Failed (libmysqlclient.so.15: cannot open shared object file: No such file or directory)
[17:57:51] Loaded 0 plugins.
plase help i
|
You need to install the library of MySQL client functions, required by the MySQL plugin
Something like this (debian) should work:
Код:
apt-get install libmysqlclient15off
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such file -
[mad]MLK - 07.10.2009
bump for help with centos?
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such f -
iLinx - 07.10.2009
Quote:
Originally Posted by [mad
MLK (dino-host.net) ]
bump for help with centos?
|
this is why 13 year olds shouldnt run hosting companies.
http://www.rpmfind.net/linux/rpm2htm...qlclient.so.15
you can use fedora libraries on centos iirc
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such file -
[mad]MLK - 07.10.2009
Quote:
Originally Posted by #Linx
|
what are you talking about im not 13...
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such f -
iLinx - 07.10.2009
Quote:
Originally Posted by [mad
MLK (dino-host.net) ]
Quote:
Originally Posted by #Linx
|
what are you talking about im not 13...
|
off : the internet & an admin from everystuff says otherwise
on : idc i was just making a point
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such f -
Matimor - 08.10.2009
I have the same problem as the author of the topic, and I do not know how to get rid of it.
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such file -
Meester Proper - 08.10.2009
first try to install libmysqlclient15off via
Код:
apt-get install libmysqlclient15off
when then it doesn't run, try this:
install ia32-libs via
Код:
apt-get install ia32-libs
then you download libmysqlclient15off Package (.deb) and move it to directory emul/ia32-linux or /usr/lib32 (depends on your distro), e.g.
Код:
sudo dpkg -X libmysqlclient15off_5.0.51a-3ubuntu5.4_i386.deb /usr/lib32
and run
Код:
ldconfig -n /usr/lib32
(or
Код:
ldconfig -n emul/ia32-linux
) or where you moved your libmysqlclient15off
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such f -
Matimor - 08.10.2009
Meester Ok only problem with that is not in my lib32 folder, even though client-installation.
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such file -
Meester Proper - 08.10.2009
the 32 bit libs are stored in /usr/lib32 or in /emul/ia32-linux, it depends on your distro of linux, so you have to do for example (example is for ubuntu)
Code:
sudo dpkg -X libmysqlclient15off_5.0.51a-3ubuntu5.4_i386.deb /usr/lib32
or
Code:
sudo dpkg -X libmysqlclient15off_5.0.51a-3ubuntu5.4_i386.deb /emul/ia32-linux
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such f -
Matimor - 09.10.2009
In my case, the system is Debian 4: /
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such f -
iLinx - 09.10.2009
Quote:
Originally Posted by Matimor
In my case, the system is Debian 4: /
|
The question is. Is it 32bit or 64bit
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such f -
Matimor - 09.10.2009
32bit
Re: [Linux SQL] libmysqlclient.so.15: cannot open shared object file: No such file -
Norrin - 18.01.2013
Same problem here. Using Ubuntu 12.04 32bit.