TeamSpeak 3 is a popular voice communication platform known for its robust voice quality and customizable features. This guide will walk you through the process of installing a TeamSpeak 3 server on a Linux VPS.
TeamSpeak 3 vs. Discord
While Discord has gained popularity due to its feature-rich environment, TeamSpeak 3 remains relevant for its low latency, reliability, and server control. Discord offers a free version, but TeamSpeak 3 requires a license for more than 32 slots.
TeamSpeak 3 Licensing and Pricing
TeamSpeak 3 offers both free and paid options. The free license provides 32 slots, while paid licenses offer more slots. You can purchase a TeamSpeak 3 license from the official website or rent a pre-configured server from a third-party provider.
Installing TeamSpeak 3 on a VPS
To install TeamSpeak 3 on a Linux VPS, follow these steps:
-
Connect to your server as root via SSH.
-
Update your system:
apt update apt upgrade
-
Create a directory for your TeamSpeak server:
mkdir teamspeak3 cd teamspeak3
-
Download the latest version of the server from the TeamSpeak website.
-
Extract the archive:
tar -xjvf teamspeak3-server*.tar.bz2
-
Agree to the license terms:
cd teamspeak3-server_linux_amd64/ touch .ts3server_license_accepted
-
Launch the TeamSpeak 3 server:
./ts3server_startscript.sh start
-
Connect to your TeamSpeak 3 server using the Admin Token you obtained earlier.
-
Stop your TeamSpeak 3 server:
./ts3server_startscript.sh stop
Congratulations on setting up your own TeamSpeak 3 server!