搭建linux下teamspeak3多人语音服务器
最近项目中新的需求,需要支持多人在线实时通话。就安装测试一下teamspeak。
http://www.teamspeak.com/ 主页有服务器版本和客户端版本供下载安装。
软硬件环境:
melot@melot-kkcam:~$ uname -a
Linux melot-kkcam 3.13.--generic #-Ubuntu SMP Thu Nov :: UTC x86_64 x86_64 x86_64 GNU/Linux
melot@melot-kkcam:~$ head -n /etc/issue
Ubuntu 14.04. LTS \n \l
melot@melot-kkcam:~$ cat /proc/cpuinfo
processor :
vendor_id : GenuineIntel
cpu family :
model :
model name : Intel(R) Core(TM) i3- CPU @ .40GHz
******
cpu MHz : 1600.000
cache size : KB
******
cpu cores :
******
melot@melot-kkcam:~$ cat /proc/meminfo
MemTotal: kB
1. 下载并解压64位linux server版本teamspeak
wget http://dl.4players.de/ts/releases/3.0.11.2/teamspeak3-server_linux-amd64-3.0.11.2.tar.gz
tar -zxvf teamspeak3-server_linux-amd64-3.0.11.2.tar.gz
sudo mv teamspeak3-server_linux-amd64 /opt/teamspeak3/
cd /opt/teamspeak3/teamspeak3-server_linux-amd64
2. teamspeak安装配置mysql
 参考 http://www.cnblogs.com/zzugyl/p/3688796.html
melot@melot-kkcam:~/file$ mysql -u root -prootmelot
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is
Server version: 5.5.-0ubuntu0.14.04. (Ubuntu) Copyright (c) , , Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> CREATE DATABASE ts3db;
Query OK, row affected (0.00 sec) mysql> USE ts3db;
Database changed
mysql> CREATE USER 'ts3'@'localhost' IDENTIFIED BY 'ts3melot';
Query OK, rows affected (0.00 sec) mysql> GRANT ALL ON ts3db.* TO 'ts3'@'localhost';
Query OK, rows affected (0.00 sec) mysql> quit
Bye
3. 配置teamspeak和对应mysql
根据 http://bbs.chinaunix.net/thread-1929023-1-1.html 或者下载他的附件 特此感谢
修改相应配置文件和数据库文件,启动服务。
最终生成token记住,登录管理需要这个key。
melot@melot-kkcam:/opt/teamspeak3/teamspeak3-server_linux-amd64$
------------------------------------------------------------------
I M P O R T A N T
------------------------------------------------------------------
Server Query Admin Account created
loginname= "serveradmin", password= "xnjvIjrZ"
------------------------------------------------------------------ ------------------------------------------------------------------
I M P O R T A N T
------------------------------------------------------------------
ServerAdmin privilege key created, please use it to gain
serveradmin rights for your virtualserver. please
also check the doc/privilegekey_guide.txt for details. token=J8EvA5xhHzQ7GqttilOUoyFn81uYESRyy7PFLrYJ
------------------------------------------------------------------
4.最后展示一下成果,在win和android连麦的情况。

搭建linux下teamspeak3多人语音服务器的更多相关文章
- 搭建 Linux 下 GitLab 服务器
		转自:http://blog.csdn.net/passion_wu128/article/details/8216086 目录: 平台需求 硬件需求 本安装指南已于 DebianUbuntu 测试通 ... 
- 搭建 Linux 下 GitLab 服务器(转)
		这两天因为项目需求需要搭建一个GitLab服务器,遇到了很多问题,参考了很多网络资料,终于搭建成功,在此把这个过程记录一下,利人利己. 一.最终目的 1,在Linux下创建GitLab服务器,客户端能 ... 
- 搭建 Linux 下 GitLab 服务器【转】
		转自:http://blog.csdn.net/passion_wu128/article/details/8216086 版权声明:本文为博主原创文章,未经博主允许不得转载. 目录(?)[-] 平台 ... 
- Linux系统下LNMP一键搭建Linux、PHP、MySQL环境(适合新手搭建linux下的web生成环境)
		一. 首先要解释一下,什么是LNMP,LNMP起源于LAMP,LAMP是Linux+Apache+Mysql/MariaDB+Perl/PHP/Python的缩写,这里将Web服务端的Apache替换 ... 
- Linux下如何查看自己的服务器有没有无线网卡
		还是实验室那台破服务器,连不上网.有没有界面,所以想着如何用一些命令来链接上热点. 当然,在linux下链接wifi没有win下那么一点就好了! 首先我们需要的基本条件就是: 服务器上有无线网卡.[r ... 
- Linux下安装配置MySQL5.7服务器
		Linux下安装配置MySQL服务器 一.安装环境 ============ OS:centos6.8 MySQL:mysql-5.7.16-linux-glibc2.5-x86_64.tar.gz ... 
- Linux下网络socket编程——实现服务器(select)与多个客户端通信
		一.关于socket通信 服务器端工作流程: 调用 socket() 函数创建套接字 用 bind() 函数将创建的套接字与服务端IP地址绑定 调用listen()函数监听socket() 函数创建的 ... 
- Linux下IP修改后重启服务器 oralce 出错(监听无法启动)
		针对linux下修改IP导致的Oracle不能启动问题的解决 主要修改/etc/hosts配置文件.修改前配置: # Do not remove the following line, or vari ... 
- 搭建Linux下的SVN服务器
		______________________________________________配置SVN步骤______________________________________________ ... 
随机推荐
- 重写hashCode()的方法
			重写hashCode()方法的基本规则: 1.在程序运行过程中,同一个对象多次调用hashCode()方法应该返回相同的值 2.当两个对象通过equals()方法比较返回true时,这两个对象的has ... 
- MariaDB10.2.X-新特性1-支持分析函数
			前言:前段时间看到MariaDB10.2出测试版本了,心想有什么新特性玩玩,大家都知道MySQL不支持分析函数,但是MariaDB10.2.X支持分析函数了, 1.表结构 CREATE TABLE ` ... 
- android源码编译1
			一.环境说明: 1.liunx系统:Ubuntu12.04 2.jdk:sun-java6-jdk 3.g++4.5 gcc4.5 二.android源码的目录结构 |-- Makefile |-- ... 
- html5 touch事件实现触屏页面上下滑动(一)
			最近做的做那个app的项目由于用overflow:hidden导致了很多问题,于是决定研究下html5的touch事件.想找个全面点的帖子真是难死了,虽然好多关于html5 touch的文章但大多都是 ... 
- WIN7 64位系统搭建WINCE6.0系统遇到的问题
			WIN7 64位系统搭建WINCE6.0系统遇到的问题 安装顺序如下: .先装Visual Studio2005: .安装Visual Studio2005 Service Pack 1: .安装Vi ... 
- 宏buf_pool_struct
			typedef struct buf_pool_struct buf_pool_t; /** @brief The buffer pool structure. NOTE! The definitio ... 
- Hibernate映射集合属性
			Hibernate要求持久化集合属性字段必须声明为接口,实际的接口可以是java.util.Set,java.util.Collection,java.util.List,java.util.Map, ... 
- [转帖]Asp.NET 弹出页面
			原文链接:http://www.cnblogs.com/adi-liu/archive/2008/07/18/1246091.html ASP.NET 弹出对话框和页面之间传递值的经验总结 今天碰到一 ... 
- ViewPager 滑动页(三)
			需求:滑动展示页,能够使用本地数据,及获取服务器数据进行刷新操作,当滑动到最后一页时,结束当前activity,进入下一个activity: 效果图: 实现分析: 1.目录结构: 代码实现: 1.Po ... 
- ms_sql:drop and create  a job
			/****** Object: Job [syncData_23_00] Script Date: 09/30/2013 16:48:32 ******/ ) IF EXISTS (SELECT jo ... 
