Community Forums Today's Posts     Member List     Archive    
Page 1 of 2 12 LastLast
Results 1 to 15 of 24

Hybrid View

  1. #1
    Join Date
    Apr 2010
    Location
    Texas
    Posts
    5

    libmysqlclient.so.15 not found

    I am running a fresh install of Ubuntu 9.10 x64 Server with LAMP installed.

    I have teamspeak3 x64 downloaded and have setup the ts3server.ini and ts3_mysql.ini files.

    When I try to start the server using:
    ./ts3server_minimal_runscript.sh inifile=ts3server.ini
    or
    ./ts3server_startscript.sh start (I have set the Commandline Parameters to inifile=ts3server.ini)

    I get the error:
    2010-04-17 06:23:15.917640|CRITICAL|DatabaseQuery | | unable to load database plugin library "libts3db_mysql.so", halting!

    I have searched the forums but it seems the answers differ between each post. Can someone help me understand what I am missing here.

    Thanks

  2. #2
    Join Date
    Dec 2009
    Location
    The Game!
    Posts
    236
    Hi, can you please post the output of
    Code:
    ldd libts3db_mysql.so
    ?

    It seems that either your user cannot access the library or that you dont have the required version.

  3. #3
    Join Date
    Dec 2009
    Location
    New Jersey USA
    Posts
    68
    Download the latest version again, They corrected that error. Re-upload it to the server.....

  4. #4
    Join Date
    Apr 2010
    Location
    Texas
    Posts
    5
    Here is the results from ldd libts3db_mysql.so

    Code:
    teamspeak@teamspeak:~/ts3$ ldd libts3db_mysql.so
            linux-vdso.so.1 =>  (0x00007fffbffff000)
            libmysqlclient.so.15 => not found
            libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x00007f9882913000)
            libm.so.6 => /lib/libm.so.6 (0x00007f988268e000)
            libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00007f9882477000)
            libc.so.6 => /lib/libc.so.6 (0x00007f9882108000)
            /lib64/ld-linux-x86-64.so.2 (0x00007f9882e31000)
    BaDaSS <- I have downloaded the latest version on the website as of last night.

  5. #5
    Join Date
    Apr 2010
    Location
    Texas
    Posts
    5
    After looking at this a little more I found that in

    /usr/lib64

    I have the file

    libmysqlclient.so.16

  6. #6
    Join Date
    Dec 2009
    Location
    New Jersey USA
    Posts
    68
    Quote Originally Posted by mthome2010 View Post
    Here is the results from ldd libts3db_mysql.so

    Code:
    teamspeak@teamspeak:~/ts3$ ldd libts3db_mysql.so
            linux-vdso.so.1 =>  (0x00007fffbffff000)
            libmysqlclient.so.15 => not found
            libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x00007f9882913000)
            libm.so.6 => /lib/libm.so.6 (0x00007f988268e000)
            libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00007f9882477000)
            libc.so.6 => /lib/libc.so.6 (0x00007f9882108000)
            /lib64/ld-linux-x86-64.so.2 (0x00007f9882e31000)
    BaDaSS <- I have downloaded the latest version on the website as of last night.
    I was missing this in Centos 5, I had to add it to /usr/lib/mysql

    Download it HERE

  7. #7
    Join Date
    Apr 2010
    Location
    Texas
    Posts
    5
    I do not have a /usr/lib/mysql folder and why would I download/use version 15 when my system already has verions 16?

  8. #8
    Join Date
    Jan 2010
    Location
    Sweden
    Posts
    7
    Quote Originally Posted by BaDaSS View Post
    I was missing this in Centos 5, I had to add it to /usr/lib/mysql

    Download it HERE
    For anyone reading this and who runs CentOS 5, please don't do that. It's not a good idea to manually download and install system libraries like that.

    Instead, always strive to find and install a package that contains the file in question. (The package that has the libmysqlclient.so.15 library in CentOS5 is called "mysql")
    Code:
    yum install mysql
    In general, if you're missing a certain file in RedHat/CentOS/Fedora, first check to see if there's a package for it using yum provides <somefile>. Example:
    Code:
    yum provides libmysqlclient.so.15
    For the OP, running Ubuntu 9.10, the package that provides that file is called libmysqlclient15off and is installed using:
    Code:
    sudo apt-get install libmysqlclient15off
    Last edited by Killswitch; 01-12-2010 at 09:24. Reason: spelling

  9. #9
    Join Date
    May 2011
    Location
    Vienna
    Posts
    4

    libmysqlclient.so.15 not found

    hey,
    i have a problem with my teamspeak server.

    Code:
    2011-05-06 09:06:58.881776|INFO    |ServerLibPriv |   | Server Version: 3.0.0-rc1 [Build: 14262], Linux
    2011-05-06 09:06:58.881904|INFO    |DatabaseQuery |   | Please make sure you use the supplied ts3server_minimal_runscript.sh to run the server, or set LD_LIBRARY_PATH yourself
    2011-05-06 09:06:58.881927|CRITICAL|DatabaseQuery |   | unable to load database plugin library "libts3db_mysql.so", halting!
    Code:
    ldd libts3db_mysql.so
            linux-vdso.so.1 =>  (0x00007fffffd8e000)
            libmysqlclient.so.15 => not found
            libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x00007fa2d4c95000)
            libm.so.6 => /lib/libm.so.6 (0x00007fa2d4a12000)
            libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00007fa2d47fc000)
            libc.so.6 => /lib/libc.so.6 (0x00007fa2d449b000)
            /lib64/ld-linux-x86-64.so.2 (0x00007fa2d51b4000)
    i think he can't found my libmysqlclient.so.15 ... but i have the libmysqlclient.so.16 instead...

    can teamspeak handle with this lib?

    are there solutions for this problem?
    i hope you can help me

  10. #10
    Join Date
    May 2011
    Location
    Vienna
    Posts
    4
    SOLUTION:

    wget http://ftp.nl.debian.org/debian/pool...51a-24+lenny5_amd64.deb
    dpkg -i libmysqlclient15off_5.0.51a-24+lenny5_amd64.deb

    now your teamspeak server should start without problems. it worked for me.

    if you get a error when you try to connect to your mysql database try this:

    mysql_save &

    now you should can connect to your database without getting a sock error

  11. #11
    Join Date
    Mar 2011
    Location
    Worldwide
    Posts
    3

    Lightbulb Solution for Debian "Squeeze"

    The silver bullet on a Debian machine would be to install the MySQL database client library through the aptitude/apt-get mechanism, in particular since manual library installations, as suggested from a previous poster, are a mess and get quite hard to handle.

    Edit /etc/apt/sources.list and add the Debian "Lenny" repositorys.
    Code:
    deb http://archive.debian.org/debian/ lenny main non-free contrib
    deb-src http://archive.debian.org/debian/ lenny main non-free contrib
    # Volatile:
    deb http://archive.debian.org/debian-volatile lenny/volatile main contrib non-free
    deb-src http://archive.debian.org/debian-volatile lenny/volatile main contrib non-free
    # Backports:
    deb http://archive.debian.org/debian-backports lenny-backports main contrib non-free
    then execute
    Code:
    aptitude update && aptitude install libmysqlclient15off
    and you are ready to go.


    Although this works perfectly well, using deprecated librarys would not be necessary if the TeamSpeak developers would kindly draw into consideration making it able to use an up-to-date client library for MySQL for one of the next releases. Regarding Debian Lenny, relying on the distribution security updates is not longer possible since Lenny is EOL since a few weeks.

  12. #12
    Join Date
    Dec 2009
    Location
    Hannover, Germany
    Posts
    33
    Quote Originally Posted by TeamSpeak24 View Post
    Regarding Debian Lenny, relying on the distribution security updates is not longer possible since Lenny is EOL since a few weeks.
    Aye, I am not able to download source or deb. Can anyone provide me one please? I use Debian Squeeze amd64.

  13. #13
    Join Date
    Jun 2008
    Posts
    7,762
    Quote Originally Posted by burnersk View Post
    Aye, I am not able to download source or deb. Can anyone provide me one please? I use Debian Squeeze amd64.
    http://forum.teamspeak.com/showthrea...ot-Squeeze-Way

    This thread can help you
    ---------------------------------------------------------
    Please don't send me private support questions.
    They belong into the forum and maybe other users have these questions/problems too.

    TeamSpeak FAQ || What should i report, when i open a client thread? || Report and upload your Crashdump here
    NPL License (Registration)

  14. #14
    Join Date
    Mar 2011
    Location
    Worldwide
    Posts
    3
    Quote Originally Posted by burnersk View Post
    Aye, I am not able to download source or deb. Can anyone provide me one please? I use Debian Squeeze amd64.
    I already mentioned a perfect solution for you, you quoted it.
    Even if you would like to download the library directly, you'll find it in the Debian archives.

  15. #15
    Join Date
    Oct 2011
    Posts
    1

    TS3 useing mysql in cloud

    ts3server_2011-10-03__20_40_15.366653.logok guys i have a hard one i am useing CENTOS 6 lates install and updated

    here is a link to my core enviroment useing make_core_environment.sh script from ts3 about crashes and hangs and other stuff pleases
    http://filesmelt.com/dl/core_environment.tar.gz

    Linux kernal x86_64 2.6.32-71.e16 installed

    ts3 installed and configurd to use my cloud Mysql server from godday

    i start the server and i get this error critical|databasequery| | unable to load database plugin library "libts3db_mysql.so", halting!

    server config files are as fallows
    [ts3server.ini]
    machine_id=
    default_voice_port=9987
    voice_ip=0.0.0.0
    licensepath=
    filetransfer_port=30033
    filetransfer_ip=0.0.0.0
    query_port=10011
    query_ip=0.0.0.0
    query_ip_whitelist=query_ip_whitelist.txt
    query_ip_blacklist=query_ip_blacklist.txt
    dbplugin=ts3db_mysql
    dbpluginparameter=
    dbsqlpath=sql/
    dbsqlcreatepath=create_sqlite/
    dbconnections=10
    dblogkeepdays=90
    logpath=logs
    logquerycommands=0
    dbclientkeepdays=30

    [ts3db_mysql.ini]
    [config]
    host=192.168.1.1
    port=3306 not going to give you mysql ip or login info
    username=*
    password=*
    database=*
    socket=

    i am running the server useing this command
    ./ts3server_linux_amd64 inifile=ts3server.ini

    so i do a ldd on libts3db_mysql.so and it says this
    libmysqlclient.so.15 => not found

    now this is a fresh install useing the Centos 6 minimal install iso and then running they command yum update

    i have tryed to get the libmysqlclient.so.15.0.0 file into the install dir of ts3 with no avail to it working still getting the same error oh and my database is working fine in windows use cloud mysql

    is there a libts3db_mysql.so compiled for libmysqlclient.so.16 shared library as that is all ready installed and working other than that nothing else is broken and i can run the ts3server useing the sqlite and it works fine just when i try to get mysql db is when it craps out

    if there is a libts3db_mysql.so complied for libmysqlclient.so.16 were can i downlod this as this would fix a lot of the problems with ts3 server on a linux host

    as to my knowalge of Centos 6 there is no way to get mysql5.0 install on centos 6 because it come prepackagd with mysql5.1.XX

    any help would be greatful

    help as i can not get a copy of libmysqlclient.so.15 to install and i do not want to download any more linux os's
    Last edited by Saberwolf; 04-10-2011 at 06:20.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. libmysqlclient.so.15 vs libmysqlclient.so.16
    By slavig in forum Linux / FreeBSD
    Replies: 0
    Last Post: 26-02-2011, 12:03
  2. libmysqlclient.so.15
    By BenzinNZ in forum Linux / FreeBSD
    Replies: 2
    Last Post: 12-10-2010, 15:42
  3. Replies: 14
    Last Post: 04-04-2010, 02:37
  4. Libmysqlclient.so.10.0.0 errors...again.
    By sipossk in forum [TeamSpeak 2] Server Support
    Replies: 4
    Last Post: 30-03-2009, 18:53
  5. chrooted TS: libmysqlclient found but not loaded
    By Curalton in forum [TeamSpeak 2] Server Support
    Replies: 0
    Last Post: 09-05-2004, 22:17

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •