{"id":235,"date":"2017-10-11T07:00:50","date_gmt":"2017-10-11T12:00:50","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=235"},"modified":"2020-08-02T11:47:34","modified_gmt":"2020-08-02T16:47:34","slug":"how-to-set-up-a-teamspeak-server-on-centos-7","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/","title":{"rendered":"How to Set Up a TeamSpeak Server on CentOS 7"},"content":{"rendered":"<div id=\"linux-392298123\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>TeamSpeak 3 is voice-over-internet protocol (VOIP) software. It provides audio communication features, that can be used online gaming, educational training, internal business communication, and staying in touch with friends and family. TeamSpeak is easy to use and offers high security standards, excellent audio quality, and low system and bandwidth usage. Featuring a client-server architecture, TeamSpeak 3 is literally capable of handling up to thousands of simultaneous users.<\/p>\n<p><!--more--><\/p>\n<p>Listed below are some of the key TeamSpeak features:<\/p>\n<ul>\n<li>Superior Voice Quality<\/li>\n<li>High Scalability<\/li>\n<li>Powerful File Transfer<\/li>\n<li>Text Chat<\/li>\n<li>3D Sound Effects<\/li>\n<li>Decentralized Infrastructure<\/li>\n<li>Robust Permission System<\/li>\n<li>Mobile applications for Android and iOS<\/li>\n<li>In-Game Overlay<\/li>\n<li>Limitless Customization<\/li>\n<\/ul>\n<p>and many more&#8230;<\/p>\n<p>In this tutorial we will guide you through the steps of installing TeamSpeak 3 Server on a CentOS 7 VPS.<\/p>\n<h3><strong>Update the system<\/strong><\/h3>\n<p>First thing you need to do is to log in to your CentOS 7 VPS via SSH as user root.<\/p>\n<pre>ssh root@IP_Address -p Port_Number<\/pre>\n<p>Before installing TeamSpeak Server it is recommended to update all packages installed on your server.<\/p>\n<pre>yum -y update<\/pre>\n<h3><strong>Install TeamSpeak Server<\/strong><\/h3>\n<p>It is not recommended to run TeamSpeak as user root, so we will create a new system user by running the following command<\/p>\n<pre>adduser --shell \/bin\/false teamspeak -d \/opt\/teamspeak3 -M<\/pre>\n<p>Download TeamSpeak 3 Server for Linux from their official website<\/p>\n<pre>wget http:\/\/dl.4players.de\/ts\/releases\/3.0.13.8\/teamspeak3-server_linux_amd64-3.0.13.8.tar.bz2<\/pre>\n<p>unpack the downloaded archive, rename the directory and remove the downloaded archive<\/p>\n<pre>tar -jxvf teamspeak3-server_linux_amd64-3.0.13.8.tar.bz2\r\nmv teamspeak3-server_linux_amd64 teamspeak3\r\nrm -f teamspeak3-server_linux_amd64-3.0.13.8.tar.bz2<\/pre>\n<p>To start the TeamSpeak server switch the user<\/p>\n<pre>su teamspeak<\/pre>\n<p>and execute the following command<\/p>\n<pre>cd \/opt\/teamspeak\r\n.\/ts3server_startscript.sh start<\/pre>\n<p>You should get the following output<\/p>\n<pre>Starting the TeamSpeak 3 server\r\nTeamSpeak 3 server started, for details please view the log file\r\nroot@linuxhostsupporttest [\/opt\/teamspeak3]#\r\n------------------------------------------------------------------\r\nI M P O R T A N T\r\n------------------------------------------------------------------\r\nServer Query Admin Account created\r\nloginname= \"serveradmin\", password= \"KffDEVoW\"\r\n------------------------------------------------------------------\r\n\r\n------------------------------------------------------------------\r\nI M P O R T A N T\r\n------------------------------------------------------------------\r\nServerAdmin privilege key created, please use it to gain\r\nserveradmin rights for your virtualserver. please\r\nalso check the doc\/privilegekey_guide.txt for details.\r\n\r\ntoken=X3wT1SSVrW9VmwRkpNC32ezYhaSJ7bp8WOwBWOnB\r\n------------------------------------------------------------------<\/pre>\n<p>If you want to stop the TeamSpeak server use the following command<\/p>\n<pre>.\/ts3server_startscript.sh stop<\/pre>\n<p>You can also create a systemd service to easily start\/stop\/restart TeamSpeak and start the service automatically on server boot. To do that, create a &#8216;teamspeak.service&#8217; file with the following content<\/p>\n<pre>vim \/lib\/systemd\/system\/teamspeak.service\r\n\r\n[Unit]\r\nDescription=TeamSpeak 3 Server Server\r\nAfter=network.target\r\n\r\n[Service]\r\nType=simple\r\nWorkingDirectory=\/opt\/teamspeak3\/\r\nExecStart=\/opt\/teamspeak3\/ts3server_startscript.sh start inifile=ts3server.ini\r\nExecStop=\/opt\/teamspeak3\/ts3server_startscript.sh stop\r\nUser=teamspeak\r\nGroup=teamspeak\r\nPIDFile=\/opt\/teamspeak3\/ts3server.pid\r\nRestart=always\r\nStandardOutput=syslog\r\nStandardError=syslog\r\nSyslogIdentifier=teamspeak\r\n\r\n[Install]\r\nWantedBy=multi-user.target<\/pre>\n<p>Save the file and execute the following commands to enable and start the service<\/p>\n<pre>systemctl --system daemon-reload\r\nsystemctl enable teamspeak3.service\r\nsystemctl start teamspeak3.service<\/pre>\n<hr \/>\n<p>Installing TeamSpeak on a CentOS 7 server<strong>\u00a0<\/strong> is an easy task if you are using one of\u00a0 our <a href=\"https:\/\/linuxhostsupport.com\">Linux Host Support Services<\/a>. Feel free to ask our expert Linux Administrators to install TeamSpeak on a CentOS 7\u00a0these for you, and it will be taken care of immediately. They are available 24&#215;7, so you can get the help you need at any time.<\/p>\n<p><span style=\"color: #ff0000;\">PS.<\/span> Feel free to share this blog post if you liked it by using the social network shortcuts &#8211; you can also leave a comment instead, found under the share buttons.<\/p><div id=\"linux-879191194\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>TeamSpeak 3 is voice-over-internet protocol (VOIP) software. It provides audio communication features, that can be used online gaming, educational training, internal business communication, and staying in touch with friends and family. TeamSpeak is easy to use and offers high security standards, excellent audio quality, and low system and bandwidth usage. Featuring a client-server architecture, TeamSpeak [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":242,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[53,79,54,20],"class_list":["post-235","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-centos7","tag-linux-host-support","tag-teamspeak","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Set Up a TeamSpeak Server on CentOS 7 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"TeamSpeak 3 is voice-over-internet protocol (VOIP) software. It provides audio communication features, that can be used online gaming, educational\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Set Up a TeamSpeak Server on CentOS 7 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"TeamSpeak 3 is voice-over-internet protocol (VOIP) software. It provides audio communication features, that can be used online gaming, educational\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2017-10-11T12:00:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-08-02T16:47:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-SetUp-a-TeamSpeak-Server-on-CentOS-7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Set Up a TeamSpeak Server on CentOS 7\",\"datePublished\":\"2017-10-11T12:00:50+00:00\",\"dateModified\":\"2020-08-02T16:47:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/\"},\"wordCount\":386,\"commentCount\":1,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-SetUp-a-TeamSpeak-Server-on-CentOS-7.jpg\",\"keywords\":[\"centos7\",\"Linux host support\",\"teamspeak\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/\",\"name\":\"How to Set Up a TeamSpeak Server on CentOS 7 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-SetUp-a-TeamSpeak-Server-on-CentOS-7.jpg\",\"datePublished\":\"2017-10-11T12:00:50+00:00\",\"dateModified\":\"2020-08-02T16:47:34+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"TeamSpeak 3 is voice-over-internet protocol (VOIP) software. It provides audio communication features, that can be used online gaming, educational\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-SetUp-a-TeamSpeak-Server-on-CentOS-7.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-SetUp-a-TeamSpeak-Server-on-CentOS-7.jpg\",\"width\":1200,\"height\":600,\"caption\":\"How to Setup a TeamSpeak Server on CentOS 7\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Set Up a TeamSpeak Server on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Set Up a TeamSpeak Server on CentOS 7 | LinuxHostSupport","description":"TeamSpeak 3 is voice-over-internet protocol (VOIP) software. It provides audio communication features, that can be used online gaming, educational","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Set Up a TeamSpeak Server on CentOS 7 | LinuxHostSupport","og_description":"TeamSpeak 3 is voice-over-internet protocol (VOIP) software. It provides audio communication features, that can be used online gaming, educational","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2017-10-11T12:00:50+00:00","article_modified_time":"2020-08-02T16:47:34+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-SetUp-a-TeamSpeak-Server-on-CentOS-7.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Set Up a TeamSpeak Server on CentOS 7","datePublished":"2017-10-11T12:00:50+00:00","dateModified":"2020-08-02T16:47:34+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/"},"wordCount":386,"commentCount":1,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-SetUp-a-TeamSpeak-Server-on-CentOS-7.jpg","keywords":["centos7","Linux host support","teamspeak","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/","name":"How to Set Up a TeamSpeak Server on CentOS 7 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-SetUp-a-TeamSpeak-Server-on-CentOS-7.jpg","datePublished":"2017-10-11T12:00:50+00:00","dateModified":"2020-08-02T16:47:34+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"TeamSpeak 3 is voice-over-internet protocol (VOIP) software. It provides audio communication features, that can be used online gaming, educational","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-SetUp-a-TeamSpeak-Server-on-CentOS-7.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2017\/10\/How-to-SetUp-a-TeamSpeak-Server-on-CentOS-7.jpg","width":1200,"height":600,"caption":"How to Setup a TeamSpeak Server on CentOS 7"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-a-teamspeak-server-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Set Up a TeamSpeak Server on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/235","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=235"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/235\/revisions"}],"predecessor-version":[{"id":1227,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/235\/revisions\/1227"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/242"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=235"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=235"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=235"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}