Closed warioishere closed 1 year ago
Looks like you have another process listening on port 3478.
ss -tulpn | grep 3478
im using a complete fresh install and that skript beeing provide by sunweaver. It looks like UDP Cant bind but tcp can bind? Im not really deep into linux. Want to set nextcloud plus turn/HPB for our little society, we dont have much money to hire a IT Specialist :(
this is the output of ss -tulpn | grep 3478
udp UNCONN 0 0 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=171))
udp UNCONN 0 0 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=170))
udp UNCONN 0 0 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=169))
udp UNCONN 0 0 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=168))
udp UNCONN 0 0 82.165.65.57:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=149))
udp UNCONN 0 0 82.165.65.57:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=147))
udp UNCONN 0 0 82.165.65.57:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=144))
udp UNCONN 0 0 82.165.65.57:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=141))
udp UNCONN 0 0 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=93))
udp UNCONN 0 0 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=91))
udp UNCONN 0 0 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=89))
udp UNCONN 0 0 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=85))
udp UNCONN 0 0 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=42))
udp UNCONN 0 0 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=39))
udp UNCONN 0 0 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=37))
udp UNCONN 0 0 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=33))
udp UNCONN 0 0 [::1]:3478 [::]:* users:(("turnserver",pid=730,fd=116))
udp UNCONN 0 0 [::1]:3478 [::]:* users:(("turnserver",pid=730,fd=117))
udp UNCONN 0 0 [::1]:3478 [::]:* users:(("turnserver",pid=730,fd=118))
udp UNCONN 0 0 [::1]:3478 [::]:* users:(("turnserver",pid=730,fd=119))
tcp LISTEN 0 1024 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=153))
tcp LISTEN 0 1024 82.165.65.57:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=146))
tcp LISTEN 0 1024 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=134))
tcp LISTEN 0 1024 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=129))
tcp LISTEN 0 1024 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=104))
tcp LISTEN 0 1024 82.165.65.57:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=97))
tcp LISTEN 0 1024 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=80))
tcp LISTEN 0 1024 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=77))
tcp LISTEN 0 1024 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=67))
tcp LISTEN 0 1024 82.165.65.57:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=66))
tcp LISTEN 0 1024 82.165.65.57:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=55))
tcp LISTEN 0 1024 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=45))
tcp LISTEN 0 1024 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=36))
tcp LISTEN 0 1024 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=22))
tcp LISTEN 0 1024 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=21))
tcp LISTEN 0 1024 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=730,fd=20))
tcp LISTEN 0 1024 [::1]:3478 [::]:* users:(("turnserver",pid=730,fd=44))
tcp LISTEN 0 1024 [::1]:3478 [::]:* users:(("turnserver",pid=730,fd=54))
tcp LISTEN 0 1024 [::1]:3478 [::]:* users:(("turnserver",pid=730,fd=90))
tcp LISTEN 0 1024 [::1]:3478 [::]:* users:(("turnserver",pid=730,fd=140))
The output of your command says that there is already a turnserver running. That can mean there is a systemd-service running, or it could mean that there is a manually started turnserver process somewhere.
sudo systemctl stop coturn
# Stop the systemd service
sudo kill -s SIGKILL 730
# Kill the process (pid=730 in your ss -tulpn output)
sudo killall coturn
# Another way of killing all coturn processes
sudo systemctl start coturn
# Start the systemd service again
Then please look into the syslog with less /var/log/syslog
to see the output of coturn.
oki will try, going to give feedback
okay, tried to kill the PID 730 process and restarted coturn. I Still get this binding problems. I am looking now into less /var/log/syslog but im scrolling down since 10 minutes and now I placed something heavy on the arrow down button because its never ending and full of millions Janus errors
how could this happen, I am using a fresh install of debian 11.6 on a IONOS VPS ?
we have our own little Server here for testing purposes, but behind a NAT with portfowarding. I installed the skript on a fresh debian 11.6 netinstall
i can replicate these problems there too
Oh, I am so sorry, my bad :D Press SHIFT + F to scroll all the way to the bottom. It will automatically update according to the file (/var/log/syslog) too. CTRL+C and Q will exit less
.
It looks like the coturn process gets restarted somehow?
sudo systemctl stop coturn
# Stop the systemd service
ss -tulpn | grep 3478
again please…
sudo kill -s SIGKILL <PID>
sudo killall coturn
And then, this should definitely stop all coturn processes. Please execute the ss
command again and make sure there are no processes which bind on port 3478. If there is still something, please try to restart the machine.
the turnserverlogs are
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: System cpu num is 4
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: log file opened: /var/tmp/turn_976_2023-03-29.log
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: System enable num is 4
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Listener address to use: 127.0.0.1
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: log file opened: /var/tmp/turnserver_2023-03-29.log
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Listener address to use: 127.0.1.1
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Listener address to use: ::1
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Listener address to use: x.x.x.x.
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Listener address to use: 0.0.0.0
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Relay address to use: x.x.x.x.
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Relay address to use: 0.0.0.0
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 10.0.0.0-10.255.255.255
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 172.16.0.0-172.31.255.255
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 192.168.0.0-192.168.255.255
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 100.64.0.0-100.127.255.255
Mar 29 08:42:48 localhost turnserver[97ss -tulpn | grep 34786]: 0: (976): INFO: Black listing: 169.254.0.0-169.254.255.255
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 192.0.0.0-192.0.0.255
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 192.0.2.0-192.0.2.255
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 198.18.0.0-198.19.255.255
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 198.51.100.0-198.51.100.255
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 203.0.113.0-203.0.113.255
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: fc00::-fdff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: fe80::-febf:ffff:ffff:ffff:ffff:ffff:ffff:ffff
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: ::ffff:0:0-::ffff:ffff:ffff
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 64:ff9b::-64:ff9b::ffff:ffff
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 64:ff9b:1::-64:ff9b:1:ffff:ffff:ffff:ffff:ffff
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 2001::-2001:1ff:ffff:ffff:ffff:ffff:ffff:ffff
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 2001:db8::-2001:db8:ffff:ffff:ffff:ffff:ffff:ffff
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Black listing: 2002::-2002:ffff:ffff:ffff:ffff:ffff:ffff:ffff
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Coturn Version Coturn-4.6.1 'Gorst'
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Max number of open files/sockets allowed for this process: 524288
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Due to the open files/sockets limitation, max supported number of TURN Sessions possible is: 262000 (approximately)
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO:
Mar 29 08:42:48 localhost turnserver[976]: ==== Show him the instruments, Practical Frost: ====
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: OpenSSL compile-time version: OpenSSL 1.1.1n 15 Mar 2022 (0x101010ef)
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: TLS 1.3 supported
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: DTLS 1.2 supported
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: TURN/STUN ALPN supported
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Third-party authorization (oAuth) supported
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: GCM (AEAD) supported
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: SQLite is not supported
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Redis is not supported
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: PostgreSQL is not supported
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: MySQL is not supported
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: MongoDB is not supported
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Default Net Engine version: 3 (UDP thread per CPU core)
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Domain name:
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Default realm: coturn.skynet-privatecloud.ch
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Certificate file found: /etc/letsencrypt/live/domain.tld/fullchain.pem
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Private key file found: /etc/letsencrypt/live/domain.tld-rsa/privkey.pem
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: TLS cipher suite: DEFAULT:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: DTLS cipher suite: DEFAULT:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: IO method: epoll (with changelist)
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Wait for relay ports initialization...
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: relay 82.165.65.57 initialization...
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: relay 82.165.65.57 initialization done
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: relay 0.0.0.0 initialization...
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: relay 0.0.0.0 initialization done
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Relay ports initialization done
Mar 29 08:42:48 localhost turnserver[976]: 0: (976): INFO: Total General servers: 4
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): DEBUG: turn server id=1 created
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): DEBUG: turn server id=0 created
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): DEBUG: turn server id=2 created
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 127.0.1.1:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 127.0.1.1:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 127.0.1.1:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv6. TLS/TCP listener opened on : ::1:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv6. TLS/TCP listener opened on : ::1:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv6. TLS/TCP listener opened on : ::1:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv6. TLS/TCP listener opened on : ::1:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 82.165.65.57:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 82.165.65.57:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 82.165.65.57:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 82.165.65.57:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 0.0.0.0:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 0.0.0.0:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 0.0.0.0:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (980): INFO: IPv4. TLS/TCP listener opened on : 0.0.0.0:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv6. TLS/TCP listener opened on : ::1:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv6. TLS/TCP listener opened on : ::1:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 82.165.65.57:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 82.165.65.57:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 127.0.1.1:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 82.165.65.57:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 127.0.1.1:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 82.165.65.57:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 127.0.1.1:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 0.0.0.0:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 0.0.0.0:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 127.0.1.1:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 0.0.0.0:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (979): INFO: IPv4. TLS/TCP listener opened on : 0.0.0.0:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv6. TLS/TCP listener opened on : ::1:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv6. TLS/TCP listener opened on : ::1:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv6. TLS/TCP listener opened on : ::1:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv6. TLS/TCP listener opened on : ::1:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (981): DEBUG: turn server id=3 created
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 82.165.65.57:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (981): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 82.165.65.57:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (981): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (976): INFO: IPv4. DTLS/UDP listener opened on: 127.0.0.1:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 82.165.65.57:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (981): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (981): INFO: IPv4. TLS/TCP listener opened on : 127.0.0.1:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 82.165.65.57:5350
Mar 29 08:42:48 localhost turnserver[976]: 5: (981): INFO: IPv4. TLS/TCP listener opened on : 127.0.1.1:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 0.0.0.0:3478
Mar 29 08:42:48 localhost turnserver[976]: 5: (981): INFO: IPv4. TLS/TCP listener opened on : 127.0.1.1:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 0.0.0.0:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (976): INFO: IPv4. DTLS/UDP listener opened on: 127.0.0.1:3479
Mar 29 08:42:48 localhost turnserver[976]: 5: (981): INFO: IPv4. TLS/TCP listener opened on : 127.0.1.1:5349
Mar 29 08:42:48 localhost turnserver[976]: 5: (978): INFO: IPv4. TLS/TCP listener opened on : 0.0.0.0:5349
I did kill all coturn processes
ss -tulpn | grep 3478
gives no output
restarted with systemctl start coturn
ss-tupln | grep 3478
gives again
udp UNCONN 0 0 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=171))
udp UNCONN 0 0 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=170))
udp UNCONN 0 0 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=169))
udp UNCONN 0 0 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=168))
udp UNCONN 0 0 x.x.x.x:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=147))
udp UNCONN 0 0 x.x.x.x.:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=145))
udp UNCONN 0 0 x.x.x.x:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=143))
udp UNCONN 0 0 x.x.x.x:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=140))
udp UNCONN 0 0 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=106))
udp UNCONN 0 0 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=104))
udp UNCONN 0 0 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=103))
udp UNCONN 0 0 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=100))
udp UNCONN 0 0 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=76))
udp UNCONN 0 0 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=74))
udp UNCONN 0 0 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=71))
udp UNCONN 0 0 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=67))
udp UNCONN 0 0 [::1]:3478 [::]:* users:(("turnserver",pid=1248,fd=119))
udp UNCONN 0 0 [::1]:3478 [::]:* users:(("turnserver",pid=1248,fd=120))
udp UNCONN 0 0 [::1]:3478 [::]:* users:(("turnserver",pid=1248,fd=121))
udp UNCONN 0 0 [::1]:3478 [::]:* users:(("turnserver",pid=1248,fd=122))
tcp LISTEN 0 1024 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=156))
tcp LISTEN 0 1024 x.x.x.x:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=148))
tcp LISTEN 0 1024 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=133))
tcp LISTEN 0 1024 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=98))
tcp LISTEN 0 1024 x.x.x.x:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=88))
tcp LISTEN 0 1024 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=73))
tcp LISTEN 0 1024 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=68))
tcp LISTEN 0 1024 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=59))
tcp LISTEN 0 1024 x.x.x.x:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=53))
tcp LISTEN 0 1024 0.0.0.0:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=51))
tcp LISTEN 0 1024 x.x.x.x:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=45))
tcp LISTEN 0 1024 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=33))
tcp LISTEN 0 1024 127.0.1.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=30))
tcp LISTEN 0 1024 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=22))
tcp LISTEN 0 1024 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=20))
tcp LISTEN 0 1024 127.0.0.1:3478 0.0.0.0:* users:(("turnserver",pid=1248,fd=21))
tcp LISTEN 0 1024 [::1]:3478 [::]:* users:(("turnserver",pid=1248,fd=39))
tcp LISTEN 0 1024 [::1]:3478 [::]:* users:(("turnserver",pid=1248,fd=40))
tcp LISTEN 0 1024 [::1]:3478 [::]:* users:(("turnserver",pid=1248,fd=80))
tcp LISTEN 0 1024 [::1]:3478 [::]:* users:(("turnserver",pid=1248,fd=141))
ss-tulpn | grep 5349
udp UNCONN 0 0 0.0.0.0:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=179))
udp UNCONN 0 0 0.0.0.0:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=178))
udp UNCONN 0 0 0.0.0.0:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=177))
udp UNCONN 0 0 0.0.0.0:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=176))
udp UNCONN 0 0 x.x.x.x:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=162))
udp UNCONN 0 0 x.x.x.x.:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=161))
udp UNCONN 0 0 x.x.x.x:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=159))
udp UNCONN 0 0 x.x.x.x.:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=157))
udp UNCONN 0 0 127.0.1.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=114))
udp UNCONN 0 0 127.0.1.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=113))
udp UNCONN 0 0 127.0.1.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=112))
udp UNCONN 0 0 127.0.1.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=111))
udp UNCONN 0 0 127.0.0.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=92))
udp UNCONN 0 0 127.0.0.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=90))
udp UNCONN 0 0 127.0.0.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=89))
udp UNCONN 0 0 127.0.0.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=87))
udp UNCONN 0 0 [::1]:5349 [::]:* users:(("turnserver",pid=1248,fd=127))
udp UNCONN 0 0 [::1]:5349 [::]:* users:(("turnserver",pid=1248,fd=128))
udp UNCONN 0 0 [::1]:5349 [::]:* users:(("turnserver",pid=1248,fd=130))
udp UNCONN 0 0 [::1]:5349 [::]:* users:(("turnserver",pid=1248,fd=131))
tcp LISTEN 0 1024 0.0.0.0:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=160))
tcp LISTEN 0 1024 x.x.x.x.:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=152))
tcp LISTEN 0 1024 127.0.1.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=137))
tcp LISTEN 0 1024 0.0.0.0:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=102))
tcp LISTEN 0 1024 x.x.x.x.:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=93))
tcp LISTEN 0 1024 127.0.1.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=77))
tcp LISTEN 0 1024 127.0.0.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=70))
tcp LISTEN 0 1024 0.0.0.0:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=61))
tcp LISTEN 0 1024 x.x.x.x.:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=57))
tcp LISTEN 0 1024 0.0.0.0:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=54))
tcp LISTEN 0 1024 x.x.x.x:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=48))
tcp LISTEN 0 1024 127.0.1.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=36))
tcp LISTEN 0 1024 127.0.1.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=35))
tcp LISTEN 0 1024 127.0.0.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=29))
tcp LISTEN 0 1024 127.0.0.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=27))
tcp LISTEN 0 1024 127.0.0.1:5349 0.0.0.0:* users:(("turnserver",pid=1248,fd=26))
tcp LISTEN 0 1024 [::1]:5349 [::]:* users:(("turnserver",pid=1248,fd=42))
tcp LISTEN 0 1024 [::1]:5349 [::]:* users:(("turnserver",pid=1248,fd=47))
tcp LISTEN 0 1024 [::1]:5349 [::]:* users:(("turnserver",pid=1248,fd=84))
tcp LISTEN 0 1024 [::1]:5349 [::]:* users:(("turnserver",pid=1248,fd=144))
I think I am just to stupid for this. We dont get working phones connections after all :(
First of all, you just leaked your domain. (You can edit the comment and delete the history afterwards.)
But it looks good! I think you need to restart janus and everything should be set.
restarted with
systemctl start coturn
If you want to restart a systemd service you want systemctl restart
!
deleted all IP and domains on the post. thanks, was not paying attention
We dont get any stable connection if the Calling Participant is just some states away, if we have someone in Germany and want to make a telephone call from switzerland to that participant with Android Talk, its almost not possible. Is this general for Nextcloud Talk, are we expecting too much?
Nextcloud Talk should easily handle three persons talking.
What does "almost not possible" mean anyway? Is it working but lagging? Or something else? Please elaborate more..
Make sure your server is decently equipped to work as a High Performance Backend.
Please make sure that nats-server, janus, coturn and nextcloud-spreed-signaling
are all running successfully, if in doubt you can try to restart them.
Nextcloud Talk should easily handle three persons talking.
What does "almost not possible" mean anyway? Is it working but lagging? Or something else? Please elaborate more..
Make sure your server is decently equipped to work as a High Performance Backend.
Please make sure that
nats-server, janus, coturn and nextcloud-spreed-signaling
are all running successfully, if in doubt you can try to restart them.
it need 5 attempts to get a stable connection, somestimes it never works. If my calling partner ist in next town, it works most of the time. Anything further is getting constantly worse. I dont know why and i cannot explain this behavior. One callingparnter is at Poland currently. Until now we were not able to get a stable connection. One Partner was in the Netherland, same Problem.
I didnt change anything to the script, restartet the server serveral times. The Server has currently 4c 8gigs of RAM running on a SSD 500mbit Broadband connection with public IP /no NAT
all of the mentionend services are up and running
Please try a call session and if the problem happened then upload the log files of janus and turnserver. (Remember to censor critical information)
Oh, and can you please either upload whole files or encapsulate the logs in a code block? 3x` at the start and at the end of the code block. (On a german keyboard it's SHIFT+´ (the the left of the backspace key)
Please try a call session and if the problem happened then upload the log files of janus and turnserver. (Remember to censor critical information)
Oh, and can you please either upload whole files or encapsulate the logs in a code block? 3x` at the start and at the end of the code block. (On a german keyboard it's SHIFT+´ (the the left of the backspace key)
Hi dzatoah
I was again trying to call my friend in Poland this time, sorry, we didnt had time before. Again, it didnt work. Doesnt matter if my friend is on WIFI or cellular network. I asked for his IP and wrote it down. There are absolutly no Logs on turnserver.log or on janus .log on that call. Also no timestamps matching that call.
The symptoms are the same. Callpartners Phone rings rightway. after taking up the call, his Talk App is saying "awaiting for xxxx to join the call"
Still we are not able to make any calls.
I tested the server with turnutils_uclient -p 5349 -W secret -v -y coturn.domain.tld
i get successful connection.
I dont know where and what to look for anymore, people from nextcloud help forum dont know where to help me neither installed the server coturn severall times, doesnt help anything
could it be some Nextcloud missconfiguring? Nextcloud also doesnt complain on Protocols on the webinterface itself :(
anyone? Is nextcloud talk not beeing made for calling over the celluar network?
Hello, i think this questions is send better to the developer from talk. We are only build a script for an easy setup. You find the developer here: https://github.com/nextcloud/spreed Regards
Hello Guys,
when i run turnserver in console its full of errors and warnings: Sorry code quoting ist not working :(
im using the script as described. no changes. Using 5349 in turnserver.conf no changes at all Running IONOS Cloud server with own public IP. the turnserver seems not to work, i lucky to get a stable connection between two android Phones on LTE Network. Most of the time calls ring, but when taking up, doesnt connect.
Any Ideas?