一、gitHub下载coturn源码
https://github.com/coturn/coturn.git
二、进入到源码目录,编译源码
./configure --prefix=/usr/local/coturn
2-1:编译异常
2-2:下载相关库文件:libevent和libssl
sudo apt-get install libssl-dev libevent-dev
2-3:编译通过
2-4:安装
make -j 4
sudo make install
2-5:进入安装路径,查看相关文件
cd /usr/local/coturn
2-6:配置环境变量
vim ~/.bashrc
2-6-1:插入以下内容
export coturn_home=/usr/local/coturn
export PATH=$PATH:$coturn_home/bin
2-6-2:使配置的环境变量生效,执行以下命令
source ~/.bashrc
三、配置turnserver.conf
3.1修改配置文件
进入安装目录**(/usr/local/coturn)**下的etc文件件,里面会默认一个turnserver.conf.default,直接拷贝一份,命名为turnserver.conf,然后打开turnserver.conf,找到下面的内容,修改为自己的真实数据即可
listening-port=3478
listening-ip=xxx.xxx.xxx.xxx(监听ip-内网ip,也就是云服务器的本机ip)
relay-device=eth0
relay-ip=xxx.xxx.xxx.xxx(中继ip,一般指向服务器的内网ip)
external-ip=xxx.xxx.xxx.xxx(服务器的外网ip)
min-port=49152
max-port=65535
lt-cred-mesh
user=用户名:密码
cli-password=test
ps:以上是我个人的基本配置
3.2部署STURN服务
turnserver -v -r xxx.xxx.xxx.xxx(公网ip):3478 -a -o -c turnserver.conf
3.3测试
3.3.1 添加一个ICE server
https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/
3.3.2验证候选者
查看relay类型对应的Protocol Address是否为自己服务器的外网ip.
ps:不要在Google浏览器上做测试,会报错。
参考 https://blog.csdn.net/lepaitianshi/article/details/123778506
相关博文
Ubuntu环境搭建Coturn(stun和turn服务器)