gpt4 book ai didi

ubuntu - Ubuntu 上的配置 CoTurn 不起作用

转载 作者:行者123 更新时间:2023-12-04 01:40:30 29 4
gpt4 key购买 nike

在使用 Chrome 62.0.3202.89 在 MacBook 10.12.6 上使用 Trickle ICE 测试我的 STUN & TURN 服务器 (CoTurn) 时,我没有得到任何候选人:

https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/

和:

stun:<ip-adres>:3478
turn:<ip-adres>:3478 [username:test]

在 Digital Ocean 上,我创建了一个 droplet Ubuntu 16.04.3 x64 并安装了 CoTurn 版本 4.5.0.3:
sudo apt-get update
sudo apt-get install coturn

默认情况下,防火墙处于非事件状态。

接下来,我编辑了 sudo vi /etc/turnserver.conf并给出以下选项:
fingerprint
lt-cred-mech
user=username:test
realm=<ip-adres>
listening-ip=<ip-adres>
relay-ip=<ip-adres>
external-ip=<ip-adres>

接下来,我编辑 sudo vi /etc/default/coturn并取消注释该选项:
TURNSERVER_ENABLED=1

然后我启动 Coturn 守护进程:
sudo systemctl start coturn
sudo systemctl status coturn

这给出了输出:
● coturn.service - LSB: coturn TURN Server
Loaded: loaded (/etc/init.d/coturn; bad; vendor preset: enabled)
Active: active (exited) since Sat 2017-11-11 20:27:10 UTC; 52s ago
Docs: man:systemd-sysv-generator(8)
Process: 1386 ExecStart=/etc/init.d/coturn start (code=exited, status=0/SUCCESS)
Tasks: 0
Memory: 0B
CPU: 0

Nov 11 20:27:10 coturn systemd[1]: Starting LSB: coturn TURN Server...
Nov 11 20:27:10 coturn coturn[1386]: * coturn disabled in /etc/default/coturn turnserver
Nov 11 20:27:10 coturn coturn[1386]: ...done.
Nov 11 20:27:10 coturn coturn[1386]: * See /etc/default/coturn for instructions on enabling turnserver
Nov 11 20:27:10 coturn coturn[1386]: ...done.
Nov 11 20:27:10 coturn systemd[1]: Started LSB: coturn TURN Server.
Nov 11 20:27:53 coturn systemd[1]: Started LSB: coturn TURN Server.

请帮助我,这里还需要什么才能让它工作?

最佳答案

启动不起作用:

sudo systemctl start coturn

这似乎是一个 bug

要修复此错误:
sudo systemctl edit --full coturn

删除所有内容并粘贴:
[Unit]  
Description=coturn
Documentation=man:coturn(1) man:turnadmin(1) man:turnserver(1)
After=syslog.target network.target

[Service]
Type=forking
User=turnserver
Group=turnserver
RuntimeDirectory=turnserver
RuntimeDirectoryMode=0750
EnvironmentFile=/etc/default/coturn
PIDFile=/run/turnserver/turnserver.pid
ExecStart=/usr/bin/turnserver --daemon --pidfile /run/turnserver/turnserver.pid --syslog -c /etc/turnserver.conf $EXTRA_OPTIONS
Restart=on-abort
LimitCORE=infinity
LimitNOFILE=1000000
LimitNPROC=60000
LimitRTPRIO=infinity
LimitRTTIME=7000000
CPUSchedulingPolicy=other
UMask=0007

[Install]
WantedBy=multi-user.target

修改单元文件后,我重新加载 systemd 进程本身以获取我的更改:
sudo systemctl daemon-reload

现在开始实际工作:
sudo systemctl start coturn

要使其在重新启动时自动重新启动:
sudo systemctl enable coturn

关于ubuntu - Ubuntu 上的配置 CoTurn 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47189606/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com