Server Creation Steps

How exactly do I complete the following server creation steps?

“place the server folder on target location on your hard drive”

“Ensure that port 9987 UDP (our default port for Voice) is forwarded in your router”

Windows Server

1. Check the Windows version

image

2. Download TeamSpeak

3. Extract files and install the app

image
After downloading TeamSpeak, extract the files using WinRAR and run the installer, TeamSpeak3.exe with the administrative mode. After acception terms and conditions, you will be presented with the Server Login Credentials .
:warning: Keep these credentials in a text file or somewhere safe if you needed to use them in the future. :warning:

4. Open the TeamSpeak 3 Ports in Windows Firewall

image

Linux Server

apt-get update
apt-get upgrade

adduser --disabled-login teamspeak

cd /home/teamspeak/;su teamspeak

wget https://files.teamspeak-services.com/releases/server/3.13.7/teamspeak3-server_linux_amd64-3.13.7.tar.bz2

tar -xvf teamspeak3-server_linux_amd64-3.13.7.tar.bz2

cd teamspeak3-server_linux_amd64

cp * -R /home/teamspeak

cd ..

rm -r teamspeak3-server_linux_amd64

rm teamspeak3-server_linux_amd64-3.13.7.tar.bz2

touch .ts3server_license_accepted

./ts3server_startscript.sh start

exit

nano /lib/systemd/system/ts3server.service

[Unit]
Description=Teamspeak Service
Wants=network.target

[Service]
WorkingDirectory=/home/teamspeak
User=teamspeak
ExecStart=/home/teamspeak/ts3server_minimal_runscript.sh
ExecStop=/home/teamspeak/ts3server_startscript.sh stop
ExecReload=/home/teamspeak/ts3server_startscript.sh restart
Restart=always
RestartSec=15

[Install]
WantedBy=multi-user.target

systemctl enable ts3server.service

reboot

systemctl status ts3server

1 Like