Ts3 Download Mac

  1. Teamspeak 3 Macbook Download
  2. Ts3 3.1.10

Download the best app to communicate over video, voice, or text. Available for Windows, macOS, Linux, iOS, and Android devices. Download Teamspeak 3 Windows 10. Download Teamspeak 3.1.9. Teamspeak 3 Download Pc. The TeamSpeak server runs as a dedicated server on Linux, macOS, Microsoft Windows and FreeBSD and uses a client based user interface or a command-line interface to control server administration and configuration. TeamSpeak clients are available for Linux, macOS.

# Get Started

There is an executable for all three platforms, which runs inside a terminal window. There is no extra webserver like Apache or NGINX needed. However it is recommended to use a reverse proxy because the app does not support HTTPS. Example configuration files can be found here

# Options

The TS3-Manager has optional command line arguments to start with. It is suggested to manually set the secret in a producation environment. This prevents losing the saved login credentials of your TeamSpeak servers if the application gets restarted.

ParameterDescriptionDefault
-p, --portport the server is listening on3000
-s, --secretsecret for decrypting and encrypting the tokenrandom value generated on each server start
-w, --whitelistcomma separated list of TeamSpeak servers you can connect to (ip or domain)all TeamSpeak servers are allowed

# Example

# Windows

Go to Download and download the file for Windows. Run it by double clicking it. On the first startup the windows firewall will probably show you a security alert. Just click on 'More informations' and hit 'Allow Access'. The app should start now as seen in the picture below. Open up a browser of your choice and go to http://localhost:3000(opens new window).

# macOS

Go to Download and download the file for Mac. Open a terminal and navigate to the downloaded file (e.g. your downloads folder).

Make the file executable.

Run the executable.

Open up a browser of your choice and go to http://localhost:3000(opens new window).

# Linux

Get the direct download url on Sourceforge (Copy the link of the download button). Download the file in your terminal session.

Make the file executable.

Now you can simply run the executable. However the recommended way is to run the application as systemd service.

# Running as systemd service (recommended)

With systemd(opens new window) you can run the application in the background and enable it to automatically start up when the machine boots.

For security reasons we will create a new user ts3-manager. This user will run the application.

Create a new work directory for the application.

Copy the previously downloaded file start_ts3-manager to the work directory.

Add the needed permissions for the user ts3-manager. The user needs write permissions to create log files.

Create a systemd service file.

Copy the following content into the file and save it:

Enable the created unit file.

Start the application.

Verify if the service is running.

Thanks to dionysius(opens new window), who wrote the systemd unit file. (#11(opens new window))

Teamspeak 3 Macbook Download

# Docker

Pull the latest image from Docker Hub.

Ts3

Start the container. Other than the executable the docker image is using the port 8080 by default.

# Configuration

The Docker image can be configured via environment variables which are correspondig to the options for the executables.

Ts3 3.1.10

Mac
Environment VariableDescriptionDefault
PORTport the server is listening on8080
JWT_SECRETsecret for decrypting and encrypting the tokenrandom value generated on each server start
WHITELISTcomma separated list of TeamSpeak servers you can connect to (ip or domain)all TeamSpeak servers are allowed

# Compose File Example