{"id":17356,"date":"2023-08-23T14:05:45","date_gmt":"2023-08-23T12:05:45","guid":{"rendered":"https:\/\/contabo.com\/blog\/?p=17356"},"modified":"2023-08-23T14:05:49","modified_gmt":"2023-08-23T12:05:49","slug":"setup-teamspeak3-on-vps","status":"publish","type":"post","link":"https:\/\/contabo.com\/blog\/setup-teamspeak3-on-vps\/","title":{"rendered":"How to Set Up Your Own Teamspeak3 Server on a VPS"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"630\" src=\"https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/08\/blog-head_how2_setup-teamspeak-server.jpg\" alt=\"Set Up Your Own TeamSpeak3 Server (head image)\" class=\"wp-image-17357\" srcset=\"https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/08\/blog-head_how2_setup-teamspeak-server.jpg 1200w, https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/08\/blog-head_how2_setup-teamspeak-server-600x315.jpg 600w, https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/08\/blog-head_how2_setup-teamspeak-server-768x403.jpg 768w\" sizes=\"auto, (max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>When it comes to online communication and collaboration, voice communication platforms play a crucial role. TeamSpeak 3 has been a popular choice for gamers, communities, and businesses for years due to its robust voice quality and customizable features. In this guide, we&#8217;ll walk you through the step-by-step process of installing a TeamSpeak 3 server on a Linux VPS running Debian 11. We&#8217;ll also touch on the differences between TeamSpeak and Discord, highlighting why TeamSpeak remains relevant in today&#8217;s communication landscape.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-why-teamspeak-3\">Why TeamSpeak 3?<\/h2>\n\n\n\n<p>&nbsp;While <a href=\"https:\/\/en.wikipedia.org\/wiki\/Discord\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Discord<\/a> has gained widespread popularity due to its feature-rich environment and integrations, TeamSpeak 3 still holds its ground in certain scenarios. TeamSpeak offers unparalleled voice quality and is often preferred by gaming communities and eSports events for its low latency and reliability. Additionally, TeamSpeak allows for complete server ownership, offering a greater degree of control and customization over the server environment, which is appealing to many user groups. It&#8217;s worth noting that Discord and Discord servers are completely free, providing an excellent option for those looking for cost-effective solutions. However, if you prioritize voice quality and server control, TeamSpeak 3 might be the better choice for your needs.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-teamspeak-3-licensing-and-pricing\">TeamSpeak 3 Licensing and Pricing\u00a0<\/h3>\n\n\n\n<p>TeamSpeak 3 operates on a licensing model that offers both free and paid options. The default installation of TeamSpeak 3 comes with a limited number of slots (simultaneous connections) for free. As of my last knowledge update in September 2021, the free license provides 32 slots. However, if you require more slots, you will need to purchase a TeamSpeak 3 license.&nbsp;<\/p>\n\n\n\n<p>To acquire a TeamSpeak 3 license with a higher slot count, you can visit the official TeamSpeak website (https:\/\/teamspeak.com\/en\/) and explore their licensing options. The pricing varies based on the number of slots you need, ranging from a few slots to hundreds or even thousands for larger communities or organizations.&nbsp;<\/p>\n\n\n\n<p>If you prefer a hassle-free experience, you can also consider renting a pre-configured TeamSpeak 3 server from third-party hosting providers. One such provider is <a href=\"https:\/\/www.g-portal.com\/en\/voiceserver\/teamspeak-3-server-hosting-ts3-voice-server\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">GPORTAL<\/a>, known for offering game and voice server hosting services. GPORTAL allows you to rent TeamSpeak 3 servers with different slot counts, catering to your specific requirements. This option can save you the effort of setting up the server yourself and ensures reliable performance.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-installing-teamspeak-3-on-a-vps\">Installing TeamSpeak 3 on a VPS\u00a0<\/h2>\n\n\n\n<p>Before you begin, make sure you have access to VPS with a Linux-based operating system. In this article everything is done a VPS M SSD from Contabo with Debian 11 on it. But now let&#8217;s get started:&nbsp;<\/p>\n\n\n\n<p>First, connect to your server as root via SSH.&nbsp;<\/p>\n\n\n\n<p>Before installing any software, ensure that your system is up to date. Run the following commands:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apt update\napt upgrade<\/code><\/pre>\n\n\n\n<p>Now create a directory for your TeamSpeak server and navigate to it:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir teamspeak3\ncd teamspeak3<\/code><\/pre>\n\n\n\n<p>Visit the TeamSpeak website to find the latest version of the server: <a href=\"https:\/\/teamspeak.com\/en\/downloads\/#server\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">https:\/\/teamspeak.com\/en\/downloads\/#server<\/a>&nbsp;<\/p>\n\n\n\n<p>Use wget to download the server package. Replace the URL below with the appropriate link:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget https:\/\/link.to\/teamspeak3-server.tar.bz2\u00a0<\/code><\/pre>\n\n\n\n<p>In our example the full command would be:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>wget <a href=\"https:\/\/files.teamspeak-services.com\/releases\/server\/3.13.7\/teamspeak3-server_linux_amd64-3.13.7.tar.bz2\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">https:\/\/files.teamspeak-services.com\/releases\/server\/3.13.7\/teamspeak3-server_linux_amd64-3.13.7.tar.bz2<\/a><\/code><\/pre>\n\n\n\n<p>Extract the Archive: Once the download is complete, extract the archive using the following command:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tar -xjvf teamspeak3-server*.tar.bz2\u00a0<\/code><\/pre>\n\n\n\n<p>Now navigate to the newly extracted directory and agree to the license terms by creating an empty file named .ts3server_license_accepted:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd teamspeak3-server_linux_amd64\/\u00a0<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>touch .ts3server_license_accepted\u00a0<\/code><\/pre>\n\n\n\n<p>To launch the TeamSpeak 3 server, use the following command:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.\/ts3server_startscript.sh start\u00a0<\/code><\/pre>\n\n\n\n<p>The server will start, and you&#8217;ll be provided with an &#8220;Admin Token&#8221; in the terminal. Copy and save this token; you&#8217;ll need it to set up your server and\/or to get admin privileges in order to configure your server further.&nbsp;<\/p>\n\n\n\n<p>Now connect to your TeamSpeak3 Server by entering your VPS\u2019s IP address into the TeamSpeak3 Client. Use the Admin Token you obtained earlier to gain administrator privileges. Only with these you will be able to set up your server, create roles and channels and more!&nbsp;<\/p>\n\n\n\n<p>If you want to <strong>stop<\/strong> your TeamSpeak3 Server, run the following command:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.\/ts3server_startscript.sh stop\u00a0<\/code><\/pre>\n\n\n\n<p><strong>Congrats!<\/strong> Your TeamSpeak3 server has been set up. Have fun configuring it.&nbsp;<\/p>\n\n\n\n<p>Now that you have your own TeamSpeak3 server you might want to have a game to play with your friends! Check out our <a href=\"https:\/\/contabo.com\/blog\/minecraft-server-setup-ultimate-guide\/\" target=\"_blank\" rel=\"noreferrer noopener\">Ultimate Guide on How to Set Up a Minecraft Server<\/a>.&nbsp;&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Discover the simple steps on how to set up your own TeamSpeak3 server. This easy-to-follow guide will guide you through the process.<\/p>\n","protected":false},"author":50,"featured_media":17357,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[18],"tags":[],"ppma_author":[1491],"class_list":["post-17356","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"uagb_featured_image_src":{"full":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/08\/blog-head_how2_setup-teamspeak-server.jpg",1200,630,false],"thumbnail":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/08\/blog-head_how2_setup-teamspeak-server-150x150.jpg",150,150,true],"medium":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/08\/blog-head_how2_setup-teamspeak-server-600x315.jpg",600,315,true],"medium_large":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/08\/blog-head_how2_setup-teamspeak-server-768x403.jpg",768,403,true],"large":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/08\/blog-head_how2_setup-teamspeak-server.jpg",1200,630,false],"1536x1536":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/08\/blog-head_how2_setup-teamspeak-server.jpg",1200,630,false],"2048x2048":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2023\/08\/blog-head_how2_setup-teamspeak-server.jpg",1200,630,false]},"uagb_author_info":{"display_name":"Tobias Mildenberger","author_link":"https:\/\/contabo.com\/blog\/author\/tobias\/"},"uagb_comment_info":0,"uagb_excerpt":"Discover the simple steps on how to set up your own TeamSpeak3 server. This easy-to-follow guide will guide you through the process.","authors":[{"term_id":1491,"user_id":50,"is_guest":0,"slug":"tobias","display_name":"Tobias Mildenberger","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/077178d5dce6c3d4c0c0396857a7e544bfdf8adf04145fff5160b33a22e28b1f?s=96&d=mm&r=g","author_category":"","user_url":"https:\/\/contabo.com\/en\/","last_name":"Mildenberger","first_name":"Tobias","job_title":"","description":""}],"_links":{"self":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts\/17356","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/users\/50"}],"replies":[{"embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/comments?post=17356"}],"version-history":[{"count":2,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts\/17356\/revisions"}],"predecessor-version":[{"id":17400,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts\/17356\/revisions\/17400"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/media\/17357"}],"wp:attachment":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/media?parent=17356"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/categories?post=17356"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/tags?post=17356"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=17356"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}