• Hey Guest, we're evolving the future of TeaSpeak.
    You're invited to join the discussion here!

Server How to install TeaSpeak Server (Linux)

yamano

TeaSpeak Team
Staff member
TeaTeam
Hi guys
This thread is intended for all users who want to know how to install a TeaSpeak server.

Recommended systems:
Debian 10/11/12
Ubuntu 21/22/23

Software you may need:
Putty (to connect by ssh)
WinSCP (to connect by sftp)
Yatqa (to manage / create your TeaSpeak server instances)

*If you do not want to manually install TeaSpeak Server,
you can simply use the already provided script.
If you want to install it manually, then follow the next tutorial.


TeaSpeak Server Install Tutorial

1. Connect your linux server using putty (ssh).

2. Update and Install the server dependencies:
Code:
apt update
apt upgrade
apt install -y wget curl screen xz-utils libnice10
3. Create a new user and password:
Code:
adduser teaspeak
4. Download and install the latest stable TeaSpeak server version available (Recommended: x64 Systems)

x86 Systems:
Code:
su - teaspeak
wget https://repo.teaspeak.de/server/linux/x86_stable/TeaSpeak-$(curl -k https://repo.teaspeak.de/server/linux/x86_stable/latest).tar.gz -O TeaSpeak-Latest.tar.gz
x64 Systems:
Code:
su - teaspeak
wget https://repo.teaspeak.de/server/linux/amd64_stable/TeaSpeak-$(curl -k https://repo.teaspeak.de/server/linux/amd64_stable/latest).tar.gz -O TeaSpeak-Latest.tar.gz
5. Extract the downloaded files
Code:
tar -xzf TeaSpeak-Latest.tar.gz
rm TeaSpeak-Latest.tar.gz
6. Start TeaSpeak server for the first time (ATTENTION: Save the serveradmin password and token!)
Code:
./teastart_minimal.sh
Type CTRL+C to stop the server.

7. Done! TeaSpeak Server is installed, you only need to start it:
Code:
./teastart.sh start
If you want to stop it:
Code:
./teastart.sh stop
Now you can connect your server machine by sftp to check the files (server folder: /home/teaspeak)
and you can use yatqa to manage / create your TeaSpeak server instances.
Do not forget that the TeaSpeak server query port is 10101 by default.
You can edit it in "config.yml" file inside your server folder.

I hope this tutorial will help the forum users! ;)
 

yamano

TeaSpeak Team
Staff member
TeaTeam
Follow the tutorial with attention step by step or use the available script.
You didnt installed the necessary dependencies.
 

yamano

TeaSpeak Team
Staff member
TeaTeam
We do not support 3rd party related software.
About "certificate invalid date" there are already several threads in this forum.
Check them here: link
 

MiguelETG

Active member
Curl is not Installed, It gives error 404
Execute this commands as sudo to install it in case you are doing so without permissions:

sudo apt install -y wget curl screen xz-utils libnice10

For error 404 it's usually something blocking the communication or server error (this last one is discarded). CHeck your firewall and ensure you are allowing https protocol
 

venus

New member
Execute this commands as sudo to install it in case you are doing so without permissions:

sudo apt install -y wget curl screen xz-utils libnice10

For error 404 it's usually something blocking the communication or server error (this last one is discarded). CHeck your firewall and ensure you are allowing https protocol
tnx 😍