Forum


Notice to all users

We are migrating towards a new forum system located at community.teamspeak.com, as such this forum will become read-only on January 29, 2020

Page 1 of 4 123 ... LastLast
Results 1 to 15 of 59
  1. #1
    Join Date
    September 2012
    Posts
    6,079

    [Discussion] TeamSpeak Server 3.8.0

    This thread is for feedback and discussion for the 3.8.0 server release.
    For details about the server release and changelog, please see the announcement thread.
    When sending PMs please make sure to include a reference link to the thread in question in the body of your message.

  2. #2
    Join Date
    April 2014
    Posts
    39
    Is it possible to update the download links provided in the update thread?
    I am still only able to see only the 3.7.1 version even after an hard reload with CTRL+F5 on Chrome

  3. #3
    Join Date
    June 2016
    Location
    Serbia
    Posts
    108
    Quote Originally Posted by Multivit4min View Post
    Is it possible to update the download links provided in the update thread?
    I am still only able to see only the 3.7.1 version even after an hard reload with CTRL+F5 on Chrome
    Just use https://files.teamspeak-services.com.../server/3.8.0/
    till they update it.

  4. #4
    Join Date
    April 2014
    Posts
    39
    what i just noticed that i wont receive any tokens or serveradmin query account created on a fresh 3.8.0
    is this intended or by accident? (it seems to log the virtualserver token to virtualservers log though)


    Name:  15-56-06.png
Views: 4097
Size:  60.2 KB
    Last edited by Multivit4min; May 28th, 2019 at 03:20 PM.

  5. #5
    Join Date
    September 2012
    Posts
    6,079
    Quote Originally Posted by Multivit4min View Post
    Is it possible to update the download links provided in the update thread?
    I am still only able to see only the 3.7.1 version even after an hard reload with CTRL+F5 on Chrome
    The download page was updated now.

    Quote Originally Posted by Multivit4min View Post
    what i just noticed that i wont receive any tokens or serveradmin query account created on a fresh 3.8.0
    is this intended or by accident? (it seems to log the virtualserver token to virtualservers log though)
    Currently the only option would be to use the minimal_runscript to create the database or just start the binary directly.
    Last edited by Chris; May 28th, 2019 at 09:58 PM.
    When sending PMs please make sure to include a reference link to the thread in question in the body of your message.

  6. #6
    Join Date
    February 2016
    Posts
    2

    help please

    Hi,

    This release requires GNU C library (glibc) 2.17 or later on Linux.

    Problem=> CentOS 7 is stuck with version 2.12 and yum won't update it with a newer version.

    I cannot find a way to update glibc by another way.

    Please help, everyone using CentOS 7 will be stuck with that.

  7. #7
    Join Date
    September 2012
    Posts
    6,079
    Quote Originally Posted by castordor View Post
    Hi,

    This release requires GNU C library (glibc) 2.17 or later on Linux.

    Problem=> CentOS 7 is stuck with version 2.12 and yum won't update it with a newer version.

    I cannot find a way to update glibc by another way.

    Please help, everyone using CentOS 7 will be stuck with that.
    We announced with the previous server release that the next server release will require glibc 2.17 or newer (glibc 2.17 was released in 2012!).
    CentOS 7 has 2.17 according to distrowatch (see list of distributions that have 2.17 or newer)
    When sending PMs please make sure to include a reference link to the thread in question in the body of your message.

  8. #8
    Join Date
    February 2017
    Posts
    14
    After updating from version 3.7.1 to 3.8.0 the server will not start. No logs or crashdumps are created...
    I am starting my server with and did not change anything since updating:
    Code:
    #!/bin/sh
    ### BEGIN INIT INFO
    # Provides:             teamspeak3
    # Required-Start:       $local_fs $network
    # Required-Stop:        $local_fs $network
    # Default-Start:        2 3 4 5
    # Default-Stop:         0 1 6
    # Description:          Teamspeak 3 Server
    ### END INIT INFO
    
    
    # INIT Script by www.SysADMINsLife.com
    ######################################
    # Customize values for your needs: "User"; "DIR"
    
    USER="teamspeak3"
    DIR="/usr/local/teamspeak3/teamspeak3-server_linux_amd64"
    
    ###### Teamspeak 3 server start/stop script ######
    
    case "$1" in
    start)
    su $USER -c "${DIR}/ts3server_startscript.sh start"
    ;;
    stop)
    su $USER -c "${DIR}/ts3server_startscript.sh stop"
    ;;
    restart)
    su $USER -c "${DIR}/ts3server_startscript.sh restart"
    ;;
    status)
    su $USER -c "${DIR}/ts3server_startscript.sh status"
    ;;
    *)
    echo "Usage: {start|stop|restart|status}" >&2
    exit 1
    ;;
    esac
    exit 0
    I also tried to execute the server file directly but it did not work either. But leaving out the 'license_accepted' parameter triggered following message even though the requested file did exists:
    Please set the environment variable TS3SERVER_LICENSE to "accept" in order to accept the license agreement.
    Alternatively, create a file named ".ts3server_license_accepted" in the working directory or start the server with the command line parameter "license_accepted=1".
    To view the license agreement set TS3SERVER_LICENSE to "view" in order to print the license to the console.
    Alternatively view the file "LICENSE" in your favorite text viewer yourself.
    System: Linux 4.4.0-042stab138.1 #1 SMP Wed May 15 09:33:10 MSK 2019 x86_64

  9. #9
    Join Date
    August 2014
    Posts
    154
    Quote Originally Posted by Ragyal View Post
    After updating from version 3.7.1 to 3.8.0 the server will not start. No logs or crashdumps are created...
    I am starting my server with and did not change anything since updating:
    Code:
    #!/bin/sh
    ### BEGIN INIT INFO
    # Provides:             teamspeak3
    # Required-Start:       $local_fs $network
    # Required-Stop:        $local_fs $network
    # Default-Start:        2 3 4 5
    # Default-Stop:         0 1 6
    # Description:          Teamspeak 3 Server
    ### END INIT INFO
    
    
    # INIT Script by www.SysADMINsLife.com
    ######################################
    # Customize values for your needs: "User"; "DIR"
    
    USER="teamspeak3"
    DIR="/usr/local/teamspeak3/teamspeak3-server_linux_amd64"
    
    ###### Teamspeak 3 server start/stop script ######
    
    case "$1" in
    start)
    su $USER -c "${DIR}/ts3server_startscript.sh start"
    ;;
    stop)
    su $USER -c "${DIR}/ts3server_startscript.sh stop"
    ;;
    restart)
    su $USER -c "${DIR}/ts3server_startscript.sh restart"
    ;;
    status)
    su $USER -c "${DIR}/ts3server_startscript.sh status"
    ;;
    *)
    echo "Usage: {start|stop|restart|status}" >&2
    exit 1
    ;;
    esac
    exit 0
    I also tried to execute the server file directly but it did not work either. But leaving out the 'license_accepted' parameter triggered following message even though the requested file did exists:


    System: Linux 4.4.0-042stab138.1 #1 SMP Wed May 15 09:33:10 MSK 2019 x86_64
    Hello, please check your glibc version with the command: /lib/x86_64-linux-gnu/libc.so.6 If your version is less than 2.17 of glibc you will need to update your operating system

    If it is confirmed that the version is too old I advise you to switch to Ubuntu 18.04.2 LTS


    Do not forget to save your files after shutting down the TS server:
    ts3server.sqlitedb
    licensekey.dat
    File: files


    If you have forgotten how to install a server here is the quick and easy procedure.


    https://www.bennetrichter.de/en/tuto...-server-linux/


    PS: Change teamspeak3-server_linux_amd64-3.7.1.tar.bz2 by teamspeak3-server_linux_amd64-3.8.0.tar.bz2


    cordially
    Last edited by Dragon34; May 29th, 2019 at 09:27 AM.

  10. #10
    Join Date
    September 2012
    Posts
    6,079
    Quote Originally Posted by Ragyal View Post
    After updating from version 3.7.1 to 3.8.0 the server will not start. No logs or crashdumps are created...
    I am starting my server with and did not change anything since updating:

    I also tried to execute the server file directly but it did not work either. But leaving out the 'license_accepted' parameter triggered following message even though the requested file did exists:

    System: Linux 4.4.0-042stab138.1 #1 SMP Wed May 15 09:33:10 MSK 2019 x86_64
    What system do you use?
    The startscript works fine here (except for the above mentioned problem with not getting the query password printed)
    When sending PMs please make sure to include a reference link to the thread in question in the body of your message.

  11. #11
    Join Date
    March 2018
    Posts
    7
    i have exactly the same problem like Ragyal.

    Checked the following:

    - ldd (Debian GLIBC 2.24-11+deb9u4) 2.24
    - cat /etc/debian_version: 9.9
    - its running on a x86 server with x86 version
    - license is accepted with file (.ts3server_license_accepted)
    - done a clean install of teamspeak and insertet database file, files folder and license accepted file. Also wont work.

    Everything is up to date. Teamspeak 3.7.1 works smooth, also after downgrading back from 3.8.0 to 3.7.1
    Last edited by Caaruzo; May 29th, 2019 at 10:55 AM.

  12. #12
    Join Date
    February 2017
    Posts
    14
    Quote Originally Posted by Dragon34 View Post
    Hello, please check your glibc version with the command: /lib/x86_64-linux-gnu/libc.so.6 If your version is less than 2.17 of glibc you will need to update your operating system

    If it is confirmed that the version is too old I advise you to switch to Ubuntu 18.04.2 LTS
    Double checked my glibc version which is 2.23 so that shouldn't be the problem.

    Quote Originally Posted by Chris View Post
    What system do you use?
    I am using a hosted V-Server.
    Code:
    $ lsb_release -a
    No LSB modules are available.
    Distributor ID: Ubuntu
    Description:    Ubuntu 16.04.6 LTS
    Release:        16.04
    Codename:       xenial
    PS: Even though the server doesn't really start the pid file is created every time I start a new attempt.
    PPS: Trying to start a clean version of 3.8.0 also fails and downgrading like Caaruzo mentioned is possible.
    Last edited by Ragyal; May 29th, 2019 at 03:46 PM.

  13. #13
    Join Date
    July 2018
    Posts
    16
    Quote Originally Posted by Multivit4min View Post
    what i just noticed that i wont receive any tokens or serveradmin query account created on a fresh 3.8.0
    is this intended or by accident? (it seems to log the virtualserver token to virtualservers log though)


    Name:  15-56-06.png
Views: 4097
Size:  60.2 KB


    Just ./ts3server_startscript.sh start serveradmin_password=blabla . and you can see the default token at the yatqa (:

  14. #14
    Join Date
    May 2007
    Location
    Eastern NC
    Posts
    1,801
    Quote Originally Posted by castordor View Post
    Hi,

    This release requires GNU C library (glibc) 2.17 or later on Linux.

    Problem=> CentOS 7 is stuck with version 2.12 and yum won't update it with a newer version.

    I cannot find a way to update glibc by another way.

    Please help, everyone using CentOS 7 will be stuck with that.
    As mentioned CentOS 7 is not limited to 2.12, that is where CentOS 6.10 (Final) is capped at as found while beta testing.

  15. #15
    Join Date
    February 2017
    Posts
    14
    Another addition:
    Disabling daemon mode gives another line of "information":
    Code:
    ./ts3server_startscript.sh start
    Starting the TeamSpeak 3 server
    TeamSpeak 3 server could not start

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [Discussion] TeamSpeak Server 3.6.x
    By dante696 in forum Suggestions and Feedback
    Replies: 31
    Last Post: March 19th, 2019, 01:58 PM
  2. [Discussion] TeamSpeak 3 Server 3.3.0 & 3.3.1
    By dante696 in forum Suggestions and Feedback
    Replies: 48
    Last Post: September 6th, 2018, 07:58 PM
  3. [Discussion] TeamSpeak 3 Server 3.2.0
    By dante696 in forum Suggestions and Feedback
    Replies: 24
    Last Post: July 19th, 2018, 09:34 AM
  4. [Discussion] TeamSpeak 3.1.1 Beta Discussion
    By Chris in forum Suggestions and Feedback
    Replies: 15
    Last Post: February 10th, 2017, 05:02 PM
  5. [Discussion] TeamSpeak 3 Server 3.0.12.*
    By Dream in forum Suggestions and Feedback
    Replies: 7
    Last Post: April 5th, 2016, 10:18 PM

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
  •