最近项目中新的需求,需要支持多人在线实时通话。就安装测试一下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多人语音服务器的更多相关文章

  1. 搭建 Linux 下 GitLab 服务器

    转自:http://blog.csdn.net/passion_wu128/article/details/8216086 目录: 平台需求 硬件需求 本安装指南已于 DebianUbuntu 测试通 ...

  2. 搭建 Linux 下 GitLab 服务器(转)

    这两天因为项目需求需要搭建一个GitLab服务器,遇到了很多问题,参考了很多网络资料,终于搭建成功,在此把这个过程记录一下,利人利己. 一.最终目的 1,在Linux下创建GitLab服务器,客户端能 ...

  3. 搭建 Linux 下 GitLab 服务器【转】

    转自:http://blog.csdn.net/passion_wu128/article/details/8216086 版权声明:本文为博主原创文章,未经博主允许不得转载. 目录(?)[-] 平台 ...

  4. Linux系统下LNMP一键搭建Linux、PHP、MySQL环境(适合新手搭建linux下的web生成环境)

    一. 首先要解释一下,什么是LNMP,LNMP起源于LAMP,LAMP是Linux+Apache+Mysql/MariaDB+Perl/PHP/Python的缩写,这里将Web服务端的Apache替换 ...

  5. Linux下如何查看自己的服务器有没有无线网卡

    还是实验室那台破服务器,连不上网.有没有界面,所以想着如何用一些命令来链接上热点. 当然,在linux下链接wifi没有win下那么一点就好了! 首先我们需要的基本条件就是: 服务器上有无线网卡.[r ...

  6. Linux下安装配置MySQL5.7服务器

    Linux下安装配置MySQL服务器 一.安装环境 ============ OS:centos6.8 MySQL:mysql-5.7.16-linux-glibc2.5-x86_64.tar.gz ...

  7. Linux下网络socket编程——实现服务器(select)与多个客户端通信

    一.关于socket通信 服务器端工作流程: 调用 socket() 函数创建套接字 用 bind() 函数将创建的套接字与服务端IP地址绑定 调用listen()函数监听socket() 函数创建的 ...

  8. Linux下IP修改后重启服务器 oralce 出错(监听无法启动)

    针对linux下修改IP导致的Oracle不能启动问题的解决 主要修改/etc/hosts配置文件.修改前配置: # Do not remove the following line, or vari ...

  9. 搭建Linux下的SVN服务器

    ______________________________________________配置SVN步骤______________________________________________ ...

随机推荐

  1. unity3d5.2.3中 调整视角

    按住alt键不放,然后左边的手的图标会变成一个眼睛,在Scene中移动.就会发现可以调整视角了

  2. github的large file storeage

    https://git-lfs.github.com/ 1.从这个网址下载git-lfs-windows-amd64-1.1.0.exe,运行这个安装包 2.然后打开git bash 输入git lf ...

  3. dp,px转换

    public static int dip2px(Context context, float dpValue) {        final float scale = context.getRes ...

  4. .frm文件

    http://www.cnblogs.com/jiangxu67/p/4755097.html MySQL]frm文件解析 MySQL 协议字节序 关于传输整数小大端的实现 http://hamilt ...

  5. Qt之进程间通信(IPC)

    简述 进程间通信,就是在不同进程之间传播或交换信息.那么不同进程之间存在着什么双方都可以访问的介质呢?进程的用户空间是互相独立的,一般而言是不能互相访问的,唯一的例外是共享内存区.但是,系统空间却是& ...

  6. jquery 字符串转json

    这里考虑的都是服务器返回JSON形式的字符串的形式 代码如下: var data=" { root: [ {name:'1',value:'0'}, {name:'6101',value:' ...

  7. jrtplib跨网络通讯NAT穿透问题解决方法

    前几篇文章讲了使用jrtplib在Android和pc端进行通讯的方法 在实际项目中,手机端和pc端一般不会在同一个子网内,两者之间联络可能要走路由器之类的NAT(网络地址转换 Network Add ...

  8. 【RMQ问题】求数组区间最大值,NYOJ-1185-最大最小值

    转自:http://blog.csdn.net/lilongherolilong/article/details/6624390 先挖好坑,明天该去郑轻找虐 RMQ(Range Minimum/Max ...

  9. Android Studio进行NDK编程

  10. 反转链表 --剑指offer

    题目:定义一个函数,输入一个链表的头结点,反转该链表并输出反正后链表的头结点. #include<stdio.h> #include<malloc.h> typedef str ...