§2024-09-06

My jitsi server's config file is /etc/jitsi/meet/yushei.net-config.js and STUN server

// The STUN servers that will be used in the peer to peer connections
        stunServers: [

            // { urls: 'stun:yushei.net:3478' },
            { urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' },
        ],
$ telnet meet-jit-si-turnrelay.jitsi.net 443
Trying 152.67.105.96...
Connected to meet-jit-si-turnrelay.jitsi.net.
Escape character is '^]'.
  • The telnet command you've used confirms that you can establish a basic TCP connection to meet-jit-si-turnrelay.jitsi.net on port 443, but it doesn’t let you interact with the STUN server protocol, as STUN uses a specific UDP protocol, and telnet is only for TCP connections.
  1. Check Jitsi Logs
  • For Jitsi Videobridge logs:
    • sudo tail -f /var/log/jitsi/jvb.log
  • For Jitsi Meet logs:
    • sudo tail -f /var/log/jitsi/jicofo.log
  • For Jitsi Meet web logs (if using nodejs):
    • sudo tail -f /var/log/nginx/access.log
    • sudo tail -f /var/log/nginx/error.log
$ sudo apt-get install build-essential autoconf automake libtool git
$ sudo apt-get install stun
$ sudo apt install stun-client
Return to Top