Docker-jitsi-meet: Crash 1-3 seconds after second participant joins a room

Created on 25 Mar 2020  ·  27Comments  ·  Source: jitsi/docker-jitsi-meet

Hi,
after setting up a fresh checkout as of today, and minimal adjustments, I get stable operation until a second participant joins a room. It shows proper video and audio for 1-3 seconds for both participants, and then it crashes. It's a pity, since it is seems to almost working nicely. Coincidentally, this project and behavior is starting to get famous.

The default setup defines JVB_ENABLE_APIS as none. Given this discussion, it ought to be something different, while a comment in env.example states:

#JVB_ENABLE_APIS=rest,colibri

which differs from the discussion, that states:

JVB_OPTS="--apis=xmpp,rest"

I've tried different combinations of xmpp, rest, colibri and confirmed, that the --api parameter of the process in the docker container dockerjitsimeet_jvb_1 matches.

Unfortunately, it's not enough. The log is full of:

1993:jvb_1      | JVB 2020-03-25 16:40:37.191 SEVERE: [30] org.jitsi.videobridge.health.Health.log() Health check failed in 0ms:
2003:jvb_1      | JVB 2020-03-25 16:40:41.954 SEVERE: [36] org.jitsi.meet.ComponentMain.call().299 java.net.ConnectException: Connection refused (Connection refused), host:localhost, port:5275
2247:jvb_1      | JVB 2020-03-25 16:40:46.955 SEVERE: [36] org.jitsi.meet.ComponentMain.call().299 java.net.ConnectException: Connection refused (Connection refused), host:localhost, port:5275
2275:jvb_1      | JVB 2020-03-25 16:40:47.192 SEVERE: [30] org.jitsi.videobridge.health.Health.log() Health check failed in 1ms:
2347:jvb_1      | JVB 2020-03-25 16:40:51.956 SEVERE: [36] org.jitsi.meet.ComponentMain.call().299 java.net.ConnectException: Connection refused (Connection refused), host:localhost, port:5275
2372:jvb_1      | JVB 2020-03-25 16:40:56.957 SEVERE: [36] org.jitsi.meet.ComponentMain.call().299 java.net.ConnectException: Connection refused (Connection refused), host:localhost, port:5275
2396:jvb_1      | JVB 2020-03-25 16:40:57.192 SEVERE: [30] org.jitsi.videobridge.health.Health.log() Health check failed in 0ms:
2406:jvb_1      | JVB 2020-03-25 16:41:01.958 SEVERE: [36] org.jitsi.meet.ComponentMain.call().299 java.net.ConnectException: Connection refused (Connection refused), host:localhost, port:5275
2455:jvb_1      | JVB 2020-03-25 16:41:06.959 SEVERE: [36] org.jitsi.meet.ComponentMain.call().299 java.net.ConnectException: Connection refused (Connection refused), host:localhost, port:5275

which looks like being the culprit of this issue, but I haven’t even found a sign, what service the ominous port 5275 should be.

The docker layout is this:

          Name              Command   State                        Ports                      
----------------------------------------------------------------------------------------------
dockerjitsimeet_jicofo_1    /init     Up                                                      
dockerjitsimeet_jvb_1       /init     Up      0.0.0.0:10000->10000/udp, 0.0.0.0:4443->4443/tcp
dockerjitsimeet_prosody_1   /init     Up      5222/tcp, 5269/tcp, 5280/tcp, 5347/tcp          
dockerjitsimeet_web_1       /init     Up      0.0.0.0:8443->443/tcp, 0.0.0.0:8008->80/tcp     

The http/https ports are a little strange, but this is behind a nginx reverse proxy, that handles ssl already. Full log is available here. The log shows ICE/STUN issues as well, but I’ve not touched those values from the defaults:

CONFIG=~/.jitsi-meet-cfg
HTTP_PORT=8008
HTTPS_PORT=8443
TZ=Europe/Berlin
PUBLIC_URL=https://meet.example.org
DOCKER_HOST_ADDRESS=192.168.123.10
XMPP_DOMAIN=meet.jitsi
XMPP_SERVER=xmpp.meet.jitsi
XMPP_BOSH_URL_BASE=http://xmpp.meet.jitsi:5280
XMPP_AUTH_DOMAIN=auth.meet.jitsi
XMPP_MUC_DOMAIN=muc.meet.jitsi
XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi
XMPP_GUEST_DOMAIN=guest.meet.jitsi
XMPP_MODULES=
XMPP_MUC_MODULES=
XMPP_INTERNAL_MUC_MODULES=
JVB_BREWERY_MUC=jvbbrewery
JVB_AUTH_USER=jvb
JVB_AUTH_PASSWORD=passw0rd
JVB_STUN_SERVERS=stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
JVB_PORT=10000
JVB_TCP_HARVESTER_DISABLED=true
JVB_TCP_PORT=4443
JVB_ENABLE_APIS=xmpp,rest
JICOFO_COMPONENT_SECRET=s3cr37
JICOFO_AUTH_USER=focus
JICOFO_AUTH_PASSWORD=passw0rd
JIGASI_XMPP_USER=jigasi
JIGASI_XMPP_PASSWORD=passw0rd
JIGASI_BREWERY_MUC=jigasibrewery
JIGASI_PORT_MIN=20000
JIGASI_PORT_MAX=20050
XMPP_RECORDER_DOMAIN=recorder.meet.jitsi
JIBRI_RECORDER_USER=recorder
JIBRI_RECORDER_PASSWORD=passw0rd
JIBRI_RECORDING_DIR=/config/recordings
JIBRI_FINALIZE_RECORDING_SCRIPT_PATH=/config/finalize.sh
JIBRI_XMPP_USER=jibri
JIBRI_XMPP_PASSWORD=passw0rd
JIBRI_BREWERY_MUC=jibribrewery
JIBRI_PENDING_TIMEOUT=90
JIBRI_STRIP_DOMAIN_JID=muc
JIBRI_LOGS_DIR=/config/logs
DISABLE_HTTPS=1

For completeness, the nginx setup (that handles other services with separate server_names well already):

server {
    if ($host = meet.example.org) {
        return 301 https://$host$request_uri;
    } # managed by Certbot

    listen 0.0.0.0:80;
    listen [::]:80;
    server_name meet.example.org;
    server_tokens off; ## Don't show the nginx version number, a security best practice

    ## Individual nginx logs for this vhost
    access_log  /var/log/nginx/meet_access.log;
    error_log   /var/log/nginx/meet_error.log;
}

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;
    server_name meet.example.org;
    server_tokens off; ## Don't show the nginx version number, a security best practice
    #ssl_session_tickets off;

    ## Individual nginx logs for this vhost
    access_log  /var/log/nginx/meet_access.log;
    error_log   /var/log/nginx/meet_error.log;

    location / {
        proxy_set_header Host $http_host;
        proxy_http_version 1.1;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_pass http://localhost:8008;
    }

    ssl_certificate /etc/letsencrypt/live/example.org/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/example.org/privkey.pem; # managed by Certbot
}

and the firewall has opened the relevant ports:

external (active)
  target: DROP
  icmp-block-inversion: no
  interfaces: eth1
  services: http https
  ports: 4443/tcp 10000/udp
  masquerade: yes

Any insights are much appreciated.

Most helpful comment

Having the exact same issue:
As soon as a second person connects, jitsi crashes with waiting for reconnection attempt. Sometimes you can see above mentioned 1-3 seconds of video, but more often it is immediately gone.

JS console output is here and I think the important line is
VM227 app.bundle.min.js:117 2020-03-26T10:27:03.928Z [conference.js] <z._onConferenceFailed>: CONFERENCE FAILED: conference.videobridgeNotAvailable

https://gist.github.com/albe/c7d71b949399308b48c6d25c14cd9925

Here is the docker setup:

CONTAINER ID        IMAGE                                           COMMAND                  CREATED             STATUS              PORTS                                                               NAMES
5629c3f3d505        jitsi/jicofo                                    "/init"                  9 minutes ago       Up 9 minutes                                                                            jitsi_meet_jicofo_1
a7c250dd4c6f        jitsi/jvb                                       "/init"                  9 minutes ago       Up 9 minutes        0.0.0.0:4443->4443/tcp, 0.0.0.0:14443->14443/udp                    jitsi_meet_jvb_1
e8e08d473dbd        jitsi/prosody                                   "/init"                  9 minutes ago       Up 9 minutes        5222/tcp, 5269/tcp, 5280/tcp, 5347/tcp                              jitsi_meet_prosody_1
7cc1928fcc8f        jitsi/web                                       "/init"                  9 minutes ago       Up 9 minutes        0.0.0.0:8442->80/tcp, 0.0.0.0:8443->443/tcp                         jitsi_meet_web_1
e

Am currently playing with the port of videobridge (hence udp 14443 instead of 10000) after I discovered service ndmp on udp port 10000. So far no luck.

DOCKER_HOST_ADDRESS is set in .env and I also added

org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=...
org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=...

in <jitsi-config>/jvb/sip-communicator.properties

Edit:
Have now also disabled the udp (by setting JVB_TCP_HARVESTER_DISABLED=false) and completely reset the config.
Also tried changing the JVB_ENABLE_APIS just to make sure.
Nothing has had any effect up to now and I'm running out of ideas :(

All 27 comments

Okay, further investigation suggests, that port 5275 is related to the XMPP service, iow. prosody.
prosody is started with this config:

dmins = { "[email protected]" }
plugin_paths = { "/prosody-plugins/", "/prosody-plugins-custom" }
http_default_host = "meet.jitsi"
VirtualHost "meet.jitsi"
    authentication = "anonymous"
    ssl = {
        key = "/config/certs/meet.jitsi.key";
        certificate = "/config/certs/meet.jitsi.crt";
    }
    modules_enabled = {
        "bosh";
        "pubsub";
        "ping";
    }
    c2s_require_encryption = false
VirtualHost "auth.meet.jitsi"
    ssl = {
        key = "/config/certs/auth.meet.jitsi.key";
        certificate = "/config/certs/auth.meet.jitsi.crt";
    }
    authentication = "internal_plain"
VirtualHost "recorder.meet.jitsi"
    modules_enabled = {
      "ping";
    }
    authentication = "internal_plain"
Component "internal-muc.meet.jitsi" "muc"
    modules_enabled = {
        "ping";
    }
    storage = "memory"
    muc_room_cache_size = 1000
Component "muc.meet.jitsi" "muc"
    storage = "memory"
    modules_enabled = {
    }
Component "focus.meet.jitsi"
    component_secret = "s3cr37"

and docker assigns these ports:

dockerjitsimeet_prosody_1   /init     Up      5222/tcp, 5269/tcp, 5280/tcp, 5347/tcp  

but which one should jvb use? Guess, it's 5222. Hence I added:

$ grep 5222 .jitsi-meet-cfg/jvb/sip-communicator.properties
org.jitsi.videobridge.xmpp.user.shard.PORT=5222

similar to the HOSTNAME parameter, but still no cigar.

Other ideas, anybody?

Please paste your JS console logs when this happens.

This is not related to JVB_ENABLE_APIS.

Let’s start from the outermost layer, what the browser gets as an error, we’ll likely see the cause there and then can adjust.

Having the exact same issue:
As soon as a second person connects, jitsi crashes with waiting for reconnection attempt. Sometimes you can see above mentioned 1-3 seconds of video, but more often it is immediately gone.

JS console output is here and I think the important line is
VM227 app.bundle.min.js:117 2020-03-26T10:27:03.928Z [conference.js] <z._onConferenceFailed>: CONFERENCE FAILED: conference.videobridgeNotAvailable

https://gist.github.com/albe/c7d71b949399308b48c6d25c14cd9925

Here is the docker setup:

CONTAINER ID        IMAGE                                           COMMAND                  CREATED             STATUS              PORTS                                                               NAMES
5629c3f3d505        jitsi/jicofo                                    "/init"                  9 minutes ago       Up 9 minutes                                                                            jitsi_meet_jicofo_1
a7c250dd4c6f        jitsi/jvb                                       "/init"                  9 minutes ago       Up 9 minutes        0.0.0.0:4443->4443/tcp, 0.0.0.0:14443->14443/udp                    jitsi_meet_jvb_1
e8e08d473dbd        jitsi/prosody                                   "/init"                  9 minutes ago       Up 9 minutes        5222/tcp, 5269/tcp, 5280/tcp, 5347/tcp                              jitsi_meet_prosody_1
7cc1928fcc8f        jitsi/web                                       "/init"                  9 minutes ago       Up 9 minutes        0.0.0.0:8442->80/tcp, 0.0.0.0:8443->443/tcp                         jitsi_meet_web_1
e

Am currently playing with the port of videobridge (hence udp 14443 instead of 10000) after I discovered service ndmp on udp port 10000. So far no luck.

DOCKER_HOST_ADDRESS is set in .env and I also added

org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=...
org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=...

in <jitsi-config>/jvb/sip-communicator.properties

Edit:
Have now also disabled the udp (by setting JVB_TCP_HARVESTER_DISABLED=false) and completely reset the config.
Also tried changing the JVB_ENABLE_APIS just to make sure.
Nothing has had any effect up to now and I'm running out of ideas :(

Thank you @saghul for your time. Here we go. I've stashed everything, pulled the current state, and rebuild the thing. Frontend is Firefox 74.0 on top of openSUSE Tumbleweed 20200322. Server is openSUSE Leap 15.1, fully updated.

Here's the web console output from the the room moderator:

2020-03-26T12:02:29.018Z [modules/xmpp/xmpp.js] <value>:  (TIME) Strophe disconnecting:  267565 Logger.js:154:22
2020-03-26T12:02:29.020Z [modules/xmpp/xmpp.js] <value>:  (TIME) Strophe disconnected:   267567 Logger.js:154:22
(TIME) index.html loaded:    358 test:19:17
2020-03-26T12:02:29.851Z [modules/browser/BrowserCapabilities.js] This appears to be firefox, ver: 74.0 Logger.js:154:22
2020-03-26T12:02:30.928Z [index.web] (TIME) document ready:  2091 Logger.js:154:22
2020-03-26T12:02:31.190Z [features/base/lastn] There is no active conference, not updating last N Logger.js:154:22
2020-03-26T12:02:31.192Z [modules/UI/videolayout/VideoLayout.js] <changeUserAvatar>:  Missed avatar update - no small video yet for undefined Logger.js:154:22
2020-03-26T12:02:31.237Z [features/base/media] Start muted: Logger.js:154:22
2020-03-26T12:02:31.245Z [features/base/media] Start audio only set to false Logger.js:154:22
2020-03-26T12:02:31.261Z [features/analytics] <ee/</<>:  Error creating analytics handler: Error: Failed to initialize Amplitude handler, no APP key Logger.js:154:22
2020-03-26T12:02:31.262Z [features/analytics] <ee/</<>:  Loaded 0 analytics handlers Logger.js:154:22
2020-03-26T12:02:31.473Z [modules/UI/videolayout/SmallVideo.js] <w.prototype.updateView>:  Unable to init avatar - no id 
Object { videoSpanId: "localVideoContainer", streamEndedCallback: _updateLargeVideoIfDisplayed(), container: span#localVideoContainer.videocontainer, "$container": {…}, localVideoId: null, isLocal: true, emitter: {…}, statsPopoverLocation: "left top", _isModerator: false, isAudioMuted: false, … }
Logger.js:154:22
2020-03-26T12:02:31.490Z [modules/UI/videolayout/SmallVideo.js] <w.prototype.updateView>:  Unable to init avatar - no id 
Object { videoSpanId: "localVideoContainer", streamEndedCallback: _updateLargeVideoIfDisplayed(), container: span#localVideoContainer.videocontainer, "$container": {…}, localVideoId: null, isLocal: true, emitter: {…}, statsPopoverLocation: "left top", _isModerator: false, isAudioMuted: false, … }
Logger.js:154:22
2020-03-26T12:02:31.555Z [features/base/devices] <k/</</<>:  Failed to set audio output device.
                        Default audio output device will be used instead Error: Audio output device change is not supported Logger.js:154:22
2020-03-26T12:02:32.288Z [modules/RTC/RTCUtils.js] <value/<>:  Available devices:  
Array(4) [ MediaDeviceInfo, MediaDeviceInfo, MediaDeviceInfo, MediaDeviceInfo ]
Logger.js:154:22
2020-03-26T12:02:32.321Z [conference.js] <updateAudioIconEnabled>:  Microphone button enabled: true local audio: null audio devices: [object MediaDeviceInfo],[object MediaDeviceInfo] device count: 2 Logger.js:154:22
2020-03-26T12:02:32.339Z [conference.js] <updateVideoIconEnabled>:  Camera button enabled: true local video: null video devices: [object MediaDeviceInfo],[object MediaDeviceInfo] device count: 2 Logger.js:154:22
2020-03-26T12:02:32.361Z [modules/xmpp/xmpp.js] <value>:  P2P STUN servers:  
Array(3) [ {…}, {…}, {…} ]
Logger.js:154:22
2020-03-26T12:02:32.411Z [modules/xmpp/xmpp.js] <value>:  (TIME) Strophe connecting:     3575 Logger.js:154:22
2020-03-26T12:02:32.425Z [modules/RTC/RTCUtils.js] <value>:  Using the new gUM flow Logger.js:154:22
2020-03-26T12:02:32.429Z [modules/RTC/RTCUtils.js] <value/i<>:  Got media constraints:  
Object { video: {…}, audio: {…} }
Logger.js:154:22
2020-03-26T12:02:32.624Z [modules/RTC/RTCUtils.js] <value/</<>:  onUserMediaSuccess Logger.js:154:22
2020-03-26T12:02:32.631Z [modules/RTC/JitsiLocalTrack.js] <value>:  Setting new MSID: {b401709b-8d29-4980-a999-e4c23f28e04b} {75eda9a0-0f0c-4756-af53-24577e687e1f} on LocalTrack[undefined,audio] Logger.js:154:22
2020-03-26T12:02:32.641Z [modules/RTC/JitsiLocalTrack.js] <value>:  Setting new MSID: {635f66df-a2ac-4c01-8bf2-af84c55689c7} {e2851109-521d-401d-8f09-c5878464bd40} on LocalTrack[undefined,video] Logger.js:154:22
2020-03-26T12:02:33.041Z [features/base/storage] <persistState>:  redux state persisted. efc0a0f4825b05ff4e406143dd51e367 -> 103726d61c9b76b9f1a05286c27654c2 Logger.js:154:22
2020-03-26T12:02:33.356Z [modules/xmpp/xmpp.js] <value>:  (TIME) Strophe connected:  4521 Logger.js:154:22
2020-03-26T12:02:33.358Z [modules/xmpp/xmpp.js] <value>:  My Jabber ID: [email protected]/15IQ3ycs Logger.js:154:22
2020-03-26T12:02:33.379Z [conference.js] <init/<>:  initialized with 2 local tracks Logger.js:154:22
2020-03-26T12:02:33.412Z [modules/xmpp/xmpp.js] <value>:  JID [email protected]/15IQ3ycs using MUC nickname b6745f32 Logger.js:154:22
2020-03-26T12:02:33.415Z [modules/xmpp/ChatRoom.js] Joined MUC as [email protected]/b6745f32 Logger.js:154:22
2020-03-26T12:02:33.421Z [modules/e2eping/e2eping.js] Initializing e2e ping; pingInterval=10000, analyticsInterval=60000. Logger.js:154:22
2020-03-26T12:02:33.425Z [modules/connectivity/ParticipantConnectionStatus.js] RtcMuteTimeout set to: 10000 Logger.js:154:22
2020-03-26T12:02:33.439Z [modules/statistics/AvgRTPStatsReporter.js] Avg RTP stats will be calculated every 15 samples Logger.js:154:22
2020-03-26T12:02:33.446Z [JitsiConference.js] <ee>:  backToP2PDelay: 5 Logger.js:154:22
2020-03-26T12:02:33.448Z [modules/videosipgw/VideoSIPGW.js] creating VideoSIPGW Logger.js:154:22
2020-03-26T12:02:33.521Z [JitsiConference.js] <ee.prototype._doReplaceTrack>:  _doReplaceTrack - no JVB JingleSession Logger.js:154:22
2020-03-26T12:02:33.523Z [JitsiConference.js] <ee.prototype._doReplaceTrack>:  _doReplaceTrack - no P2P JingleSession Logger.js:154:22
2020-03-26T12:02:33.528Z [JitsiConference.js] <ee.prototype._doReplaceTrack>:  _doReplaceTrack - no JVB JingleSession Logger.js:154:22
2020-03-26T12:02:33.530Z [JitsiConference.js] <ee.prototype._doReplaceTrack>:  _doReplaceTrack - no P2P JingleSession Logger.js:154:22
2020-03-26T12:02:33.538Z [modules/remotecontrol/RemoteControl.js] <init>:  Initializing remote control. Logger.js:154:22
2020-03-26T12:02:33.542Z [modules/xmpp/moderator.js] <d.prototype.setFocusUserJid>:  Focus jid set to:  [email protected] Logger.js:154:22
2020-03-26T12:02:33.546Z [modules/xmpp/moderator.js] <d.prototype.createConferenceIq>:  Session ID: null machine UID: 1fd45b57e36fe6a56f732beedd391cb0 Logger.js:154:22
2020-03-26T12:02:33.564Z [features/base/tracks] <F/</</<>:  Replace audio track - unmuted Logger.js:154:22
2020-03-26T12:02:33.580Z [features/base/tracks] <F/</</<>:  Replace video track - unmuted Logger.js:154:22
2020-03-26T12:02:33.671Z [conference.js] <updateAudioIconEnabled>:  Microphone button enabled: true local audio: LocalTrack[1,audio] audio devices: [object MediaDeviceInfo],[object MediaDeviceInfo] device count: 2 Logger.js:154:22
2020-03-26T12:02:33.706Z [modules/UI/videolayout/VideoLayout.js] <updateLargeVideo>:  Enforcing large video update for stream change Logger.js:154:22
2020-03-26T12:02:33.718Z [modules/UI/videolayout/SmallVideo.js] <w.prototype.updateView>:  Displaying video for b6745f32, data: [{"isCurrentlyOnLargeVideo":true,"isHovered":false,"isAudioOnly":false,"tileViewEnabled":true,"isVideoPlayable":true,"hasVideo":true,"connectionStatus":null,"videoStream":true,"isVideoMuted":false,"videoStreamMuted":false}] Logger.js:154:22
2020-03-26T12:02:33.724Z [conference.js] <updateVideoIconEnabled>:  Camera button enabled: true local video: LocalTrack[2,video] video devices: [object MediaDeviceInfo],[object MediaDeviceInfo] device count: 2 Logger.js:154:22
2020-03-26T12:02:33.775Z [modules/UI/videolayout/LargeVideoManager.js] <scheduleLargeVideoUpdate/<>:  hover in %s b6745f32 Logger.js:154:22
2020-03-26T12:02:33.840Z [modules/xmpp/strophe.ping.js] <value>:  XMPP pings will be sent every 10000 ms Logger.js:154:22
2020-03-26T12:02:33.857Z [conference.js] <updateVideoIconEnabled>:  Camera button enabled: true local video: LocalTrack[2,video] video devices: [object MediaDeviceInfo],[object MediaDeviceInfo] device count: 2 Logger.js:154:22
2020-03-26T12:02:34.039Z [features/local-recording] <setMicDevice>:  Switch microphone to KBkt5AkOcdD6+eew1sAw5Bxo1CybCJ3w3A+EBVRq4s4= Logger.js:154:22
2020-03-26T12:02:34.118Z [conference.js] <updateAudioIconEnabled>:  Microphone button enabled: true local audio: LocalTrack[1,audio] audio devices: [object MediaDeviceInfo],[object MediaDeviceInfo] device count: 2 Logger.js:154:22
2020-03-26T12:02:34.134Z [conference.js] <updateVideoIconEnabled>:  Camera button enabled: true local video: LocalTrack[2,video] video devices: [object MediaDeviceInfo],[object MediaDeviceInfo] device count: 2 Logger.js:154:22
2020-03-26T12:02:34.232Z [modules/UI/videolayout/LargeVideoManager.js] <scheduleLargeVideoUpdate/<>:  hover in %s b6745f32 Logger.js:154:22
2020-03-26T12:02:34.288Z [modules/xmpp/moderator.js] <d.prototype.parseConfigOptions>:  Authentication enabled: false Logger.js:154:22
2020-03-26T12:02:34.291Z [modules/xmpp/moderator.js] <d.prototype.parseConfigOptions>:  External authentication enabled: false Logger.js:154:22
2020-03-26T12:02:34.310Z [modules/xmpp/moderator.js] <d.prototype.parseConfigOptions>:  Sip gateway enabled:  true Logger.js:154:22
2020-03-26T12:02:34.433Z [modules/xmpp/ChatRoom.js] <value>:  entered [email protected]/focus 
Object { affiliation: "owner", role: "moderator", jid: "[email protected]/focus1065545029839", isFocus: true, isHiddenDomain: false }
Logger.js:154:22
2020-03-26T12:02:34.439Z [modules/xmpp/ChatRoom.js] <value>:  Ignore focus: [email protected]/focus, real JID: [email protected]/focus1065545029839 Logger.js:154:22
2020-03-26T12:02:34.452Z [modules/version/ComponentsVersions.js] <o.prototype.processVersions/<>:  Got xmpp version: Prosody(0.11.2,Linux) Logger.js:154:22
2020-03-26T12:02:34.454Z [modules/version/ComponentsVersions.js] <o.prototype.processVersions/<>:  Got focus version: JiCoFo(1.0.1.0-508,Linux) Logger.js:154:22
2020-03-26T12:02:34.461Z [conference.js] <_setupListeners/<>:  My role changed, new role: none Logger.js:154:22
2020-03-26T12:02:34.495Z [modules/xmpp/ChatRoom.js] <value>:  (TIME) MUC joined:     5660 Logger.js:154:22
2020-03-26T12:02:34.860Z [modules/xmpp/ChatRoom.js] <value>:  Subject is changed to Logger.js:154:22
2020-03-26T12:02:35.221Z [conference.js] <_setupListeners/<>:  My role changed, new role: moderator Logger.js:154:22
2020-03-26T12:02:35.471Z [modules/xmpp/ChatRoom.js] <value>:  Ignore focus: [email protected]/focus, real JID: [email protected]/focus1065545029839 Logger.js:154:22
2020-03-26T12:02:37.082Z [modules/xmpp/ChatRoom.js] <value>:  entered [email protected]/f5fec0bb 
Object { affiliation: "none", role: "participant", jid: "[email protected]/h_IrH0Cj", isFocus: false, isHiddenDomain: false, statsID: "Alden-tsp", nick: "hp" }
Logger.js:154:22
2020-03-26T12:02:37.209Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:37.226Z [modules/UI/videolayout/SmallVideo.js] <w.prototype.updateView>:  Displaying avatar for f5fec0bb, data: [{"isCurrentlyOnLargeVideo":false,"isHovered":false,"isAudioOnly":false,"tileViewEnabled":true,"isVideoPlayable":null,"hasVideo":false,"connectionStatus":"active","mutedWhileDisconnected":false,"wasVideoPlayed":false,"videoStream":false,"isVideoMuted":false,"videoStreamMuted":"no stream"}] Logger.js:154:22
2020-03-26T12:02:37.228Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:37.256Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:37.308Z [conference.js] <_setupListeners/<>:  USER f5fec0bb connnected: 
Object { _jid: "[email protected]/f5fec0bb", _id: "f5fec0bb", _conference: {…}, _displayName: "hp", _supportsDTMF: false, _tracks: [], _role: "participant", _status: undefined, _hidden: false, _statsID: "Alden-tsp", … }
Logger.js:154:22
2020-03-26T12:02:37.319Z [JitsiConference.js] <ee.prototype._maybeStartOrStopP2P>:  Auto P2P disabled Logger.js:154:22
2020-03-26T12:02:37.586Z [modules/UI/videolayout/LargeVideoManager.js] <scheduleLargeVideoUpdate/<>:  hover in %s f5fec0bb Logger.js:154:22
2020-03-26T12:02:37.664Z [modules/xmpp/ChatRoom.js] <value>:  Ignore focus: [email protected]/focus, real JID: [email protected]/focus1065545029839 Logger.js:154:22
2020-03-26T12:02:37.715Z [modules/xmpp/ChatRoom.js] <value>:  Ignore focus: [email protected]/focus, real JID: [email protected]/focus1065545029839 Logger.js:154:22
2020-03-26T12:02:37.734Z [modules/xmpp/ChatRoom.js] <value>:  Ignore focus: [email protected]/focus, real JID: [email protected]/focus1065545029839 Logger.js:154:22
2020-03-26T12:02:37.898Z [modules/xmpp/strophe.jingle.js] <value>:  on jingle session-initiate from [email protected]/focus 
<iq id="cGpwc3dqZnBjbTR3aTZ5dUBt…QCrYndmyrYx+qOvLMKs6egN" type="set" from="[email protected]/focus" to="[email protected]/15IQ3ycs" xmlns="jabber:client">
Logger.js:154:22
2020-03-26T12:02:37.901Z [modules/xmpp/strophe.jingle.js] <value>:  (TIME) received session-initiate:    9065 Logger.js:154:22
2020-03-26T12:02:37.902Z [modules/xmpp/strophe.jingle.js] <value>:  Marking session from [email protected]/focus as *not* P2P Logger.js:154:22
SdpSimulcast: using 3 layers index.js:44:12
2020-03-26T12:02:37.923Z [modules/RTC/TraceablePeerConnection.js] Create new TPC[1,p2p:false] Logger.js:154:22
2020-03-26T12:02:37.927Z [modules/RTC/BridgeChannel.js] constructor() with peerconnection Logger.js:154:22
2020-03-26T12:02:37.932Z [JitsiConference.js] <ee.prototype._acceptJvbIncomingCall>:  Starting CallStats for JVB connection... Logger.js:154:22
2020-03-26T12:02:37.938Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
onaddstream is deprecated! Use peerConnection.ontrack instead. lib-jitsi-meet.min.js:22
2020-03-26T12:02:38.018Z [modules/RTC/TraceablePeerConnection.js] <w.prototype.addTrack>:  add LocalTrack[1,audio] to: TPC[1,p2p:false] Logger.js:154:22
2020-03-26T12:02:38.024Z [modules/RTC/TraceablePeerConnection.js] <w.prototype.addTrack>:  add LocalTrack[2,video] to: TPC[1,p2p:false] Logger.js:154:22
2020-03-26T12:02:38.060Z [modules/xmpp/JingleSessionPC.js] <value>:  Renegotiate: setting remote description Logger.js:154:22
Halt: There are no SSRC groups in the remote description. index.js:146:16
2020-03-26T12:02:38.092Z [modules/xmpp/RtxModifier.js] <value>:  RtxModifier doing nothing, no video ssrcGroups present Logger.js:154:22
2020-03-26T12:02:38.258Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._remoteStreamAdded>:  TPC[1,p2p:false] ignored remote 'stream added' event for non-user streamid: mixedmslabel Logger.js:154:22
2020-03-26T12:02:38.264Z [modules/xmpp/JingleSessionPC.js] <value/<>:  Renegotiate: creating answer Logger.js:154:22
2020-03-26T12:02:38.296Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._processLocalSSRCsMap>:  No SSRCs found in the local SDP for LocalTrack[1,audio] MSID: {b401709b-8d29-4980-a999-e4c23f28e04b} {75eda9a0-0f0c-4756-af53-24577e687e1f} in TPC[1,p2p:false] Logger.js:154:22
2020-03-26T12:02:38.297Z [modules/xmpp/JingleSessionPC.js] <value/</<>:  Renegotiate: setting local description Logger.js:154:22
2020-03-26T12:02:38.369Z [modules/xmpp/JingleSessionPC.js] <value>:  Sending session-accept 
<iq to="[email protected]/focus" type="set" xmlns="jabber:client">
Logger.js:154:22
2020-03-26T12:02:38.632Z [JitsiMeetJS.js] <getGlobalOnErrorHandler>:  UnhandledError: TypeError: t[2] is undefined Script: https://meet.example.org/libs/lib-jitsi-meet.min.js?v=3729 Line: 6 Column: 257847 StackTrace:  TypeError: "t[2] is undefined"
    parseCandidate sdp.js:65
    RTCIceCandidate common_shim.js:85
    shimRTCIceCandidate common_shim.js:106
    o common_shim.js:27
Logger.js:154:22
2020-03-26T12:02:38.648Z [modules/xmpp/JingleSessionPC.js] <value>:  sendIceCandidate: last candidate. Logger.js:154:22
2020-03-26T12:02:38.686Z [modules/xmpp/JingleSessionPC.js] <value/this.peerconnection.oniceconnectionstatechange>:  (TIME) ICE checking P2P? false:  9851 Logger.js:154:22
TypeError: t[2] is undefined sdp.js:65:4
2020-03-26T12:02:38.692Z [modules/xmpp/JingleSessionPC.js] <value>:  sendIceCandidates 
Array [ RTCIceCandidate, RTCIceCandidate ]
Logger.js:154:22
2020-03-26T12:02:38.726Z [modules/xmpp/JingleSessionPC.js] <value/this.peerconnection.oniceconnectionstatechange>:  (TIME) ICE connected P2P? false:     9891 Logger.js:154:22
2020-03-26T12:02:38.774Z [modules/RTC/BridgeChannel.js] <value/e.onopen>:  datachannel channel opened Logger.js:154:22
2020-03-26T12:02:38.776Z [JitsiConferenceEventManager.js] <b.prototype.setupRTCListeners/<>:  (TIME) data.channel.opened 9941 Logger.js:154:22
2020-03-26T12:02:38.781Z [modules/RTC/BridgeChannel.js] <value>:  sending pinned changed notification to the bridge for endpoint  null Logger.js:154:22
2020-03-26T12:02:38.782Z [modules/RTC/BridgeChannel.js] <value>:  sending selected changed notification to the bridge for endpoints 
Array [ "b6745f32", "f5fec0bb" ]
Logger.js:154:22
2020-03-26T12:02:38.785Z [modules/RTC/BridgeChannel.js] <value>:  sending a ReceiverVideoConstraint message with a maxFrameHeight of 180 pixels Logger.js:154:22
2020-03-26T12:02:38.840Z [modules/RTC/BridgeChannel.js] <value/e.onmessage>:  Channel new dominant speaker event:  f5fec0bb Logger.js:154:22
2020-03-26T12:02:38.911Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:38.937Z [modules/RTC/BridgeChannel.js] <value/e.onmessage>:  Channel new last-n event:  
Array [ "f5fec0bb" ]

Object { colibriClass: "LastNEndpointsChangeEvent", lastNEndpoints: (1) […], endpointsEnteringLastN: (1) […], conferenceEndpoints: [] }
Logger.js:154:22
2020-03-26T12:02:38.941Z [modules/connectivity/ParticipantConnectionStatus.js] <value>:  leaving/entering lastN 
Array []

Array [ "f5fec0bb" ]
 1585224158941 Logger.js:154:22
2020-03-26T12:02:38.945Z [modules/connectivity/ParticipantConnectionStatus.js] <value>:  Assuming connection active by JVB - no notification Logger.js:154:22
2020-03-26T12:02:38.947Z [modules/connectivity/ParticipantConnectionStatus.js] <value>:  Figure out conn status for f5fec0bb, is video muted: true is active(jvb): true video track frozen: false p2p mode: false is in last N: true currentStatus => newStatus: active => active Logger.js:154:22
2020-03-26T12:02:38.949Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:38.961Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:39.159Z [modules/xmpp/strophe.jingle.js] <value>:  on jingle source-add from [email protected]/focus 
<iq id="cGpwc3dqZnBjbTR3aTZ5dUBt…wCrYndmyrYx+qOvLMKs6egN" type="set" from="[email protected]/focus" to="[email protected]/15IQ3ycs" xmlns="jabber:client">
Logger.js:154:22
2020-03-26T12:02:39.213Z [modules/xmpp/JingleSessionPC.js] <value/<>:  Processing addRemoteStream Logger.js:154:22
2020-03-26T12:02:39.214Z [modules/xmpp/JingleSessionPC.js] <value/<>:  ICE connection state:  connected Logger.js:154:22
2020-03-26T12:02:39.239Z [modules/xmpp/JingleSessionPC.js] <value>:  Renegotiate: setting remote description Logger.js:154:22
Halt: There are no SSRC groups in the remote description. index.js:146:16
2020-03-26T12:02:39.251Z [modules/xmpp/RtxModifier.js] <value>:  RtxModifier doing nothing, no video ssrcGroups present Logger.js:154:22
2020-03-26T12:02:39.290Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._remoteTrackAdded>:  TPC[1,p2p:false] remote track added: ad20afd3-905d-45a8-95fa-319021a556d0-1 audio Logger.js:154:22
2020-03-26T12:02:39.296Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._remoteTrackAdded>:  TPC[1,p2p:false] associated ssrc f5fec0bb 1379418745 Logger.js:154:22
2020-03-26T12:02:39.302Z [modules/RTC/JitsiRemoteTrack.js] New remote track added: RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.341Z [modules/UI/videolayout/VideoLayout.js] <onRemoteStreamAdded>:  Received a new audio stream for f5fec0bb Logger.js:154:22
2020-03-26T12:02:39.349Z [modules/RTC/JitsiRemoteTrack.js] <value>:  Track has been attached to a container: RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.387Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._remoteTrackAdded>:  TPC[1,p2p:false] remote track added: bd8cec2d-6e89-4630-b157-05e13e69de02-1 video Logger.js:154:22
2020-03-26T12:02:39.395Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._remoteTrackAdded>:  TPC[1,p2p:false] associated ssrc f5fec0bb 1948136253 Logger.js:154:22
2020-03-26T12:02:39.398Z [modules/RTC/JitsiRemoteTrack.js] New remote track added: RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.413Z [modules/UI/videolayout/VideoLayout.js] <onRemoteStreamAdded>:  Received a new video stream for f5fec0bb Logger.js:154:22
2020-03-26T12:02:39.420Z [modules/RTC/JitsiRemoteTrack.js] <value>:  Track has been attached to a container: RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.442Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:39.494Z [modules/UI/videolayout/LargeVideoManager.js] <scheduleLargeVideoUpdate/<>:  hover in %s f5fec0bb Logger.js:154:22
2020-03-26T12:02:39.497Z [modules/RTC/JitsiRemoteTrack.js] <value>:  Track has been attached to a container: RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.514Z [modules/xmpp/JingleSessionPC.js] <value/<>:  Renegotiate: creating answer Logger.js:154:22
2020-03-26T12:02:39.590Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._processLocalSSRCsMap>:  No SSRCs found in the local SDP for LocalTrack[1,audio] MSID: {b401709b-8d29-4980-a999-e4c23f28e04b} {75eda9a0-0f0c-4756-af53-24577e687e1f} in TPC[1,p2p:false] Logger.js:154:22
2020-03-26T12:02:39.592Z [modules/xmpp/JingleSessionPC.js] <value/</<>:  Renegotiate: setting local description Logger.js:154:22
2020-03-26T12:02:39.642Z [modules/RTC/JitsiRemoteTrack.js] <value>:  loadstart handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.646Z [modules/RTC/JitsiRemoteTrack.js] <value>:  suspend handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.649Z [modules/RTC/JitsiRemoteTrack.js] <value>:  loadstart handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.652Z [modules/RTC/JitsiRemoteTrack.js] <value>:  suspend handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.654Z [modules/RTC/JitsiRemoteTrack.js] <value>:  loadstart handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.656Z [modules/RTC/JitsiRemoteTrack.js] <value>:  suspend handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.660Z [modules/RTC/JitsiRemoteTrack.js] <value>:  loadedmetadata handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.662Z [modules/RTC/JitsiRemoteTrack.js] <value>:  loadeddata handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.664Z [modules/RTC/JitsiRemoteTrack.js] <value>:  canplay handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
(TIME) Render audio:     10831 JitsiRemoteTrack.js:212:16
(TIME) TTFM audio:   7203 JitsiRemoteTrack.js:231:16
2020-03-26T12:02:39.673Z [modules/RTC/JitsiRemoteTrack.js] <value>:  play handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.675Z [modules/RTC/JitsiRemoteTrack.js] <value>:  playing handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.675Z [modules/RTC/JitsiRemoteTrack.js] <value>:  canplaythrough handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: live, muted: true, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.700Z [modules/xmpp/JingleSessionPC.js] <value/</<>:  addRemoteStream - OK, SDPs:  
Object { media: (3) […], raw: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 5425592836925098230 0 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 16:8D:47:17:BE:5B:A5:48:73:D3:5B:11:7A:F5:1C:0A:49:1F:D3:FE:FE:E4:50:67:DA:BD:1B:1B:2C:DF:AC:E3\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\nm=audio 41888 RTP/SAVPF 111 126\r\nc=IN IP4 172.16.23.115\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 maxplaybackrate=48000;stereo=1;useinbandfec=1\r\na=fmtp:126 0-15\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:005f3a18\r\na=ice-pwd:7a3820bcbe4dc9f4f45a9f403e43a87c\r\na=candidate:0 1 UDP 2122252543 172.16.23.115 41888 typ host\r\na=candidate:1 1 TCP 2105524479 172.16.23.115 9 typ host tcptype active\r\na=end-of-candidates\r\na=ssrc:628663743 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=ssrc:628663743 msid:{b401709b-8d29-4980-a999-e4c23f28e04b}-1 {18925a65-7712-4e5e-bae5-a33bb1f6399d}-1\r\na=rtcp-mux\r\nm=video 41888 RTP/SAVPF 100 107 101\r\nc=IN IP4 172.16.23.115\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:107 H264/90000\r\na=rtpmap:101 VP9/90000\r\na=fmtp:107 profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1\r\na=fmtp:100 max-fs=12288;max-fr=60\r\na=fmtp:101 max-fs=12288;max-fr=60\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:107 nack\r\na=rtcp-fb:107 nack pli\r\na=rtcp-fb:107 ccm fir\r\na=rtcp-fb:101 nack\r\na=rtcp-fb:101 nack pli\r\na=rtcp-fb:101 ccm fir\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:005f3a18\r\na=ice-pwd:7a3820bcbe4dc9f4f45a9f403e43a87c\r\na=ssrc:2205653073 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=ssrc:2205653073 msid:{635f66df-a2ac-4c01-8bf2-af84c55689c7}-1 {453d82fa-870d-447f-9f69-88fbfc13b9f6}-1\r\na=rtcp-mux\r\nm=application 41888 DTLS/SCTP 5000\r\nc=IN IP4 172.16.23.115\r\na=setup:active\r\na=mid:data\r\na=sendrecv\r\na=ice-ufrag:005f3a18\r\na=ice-pwd:7a3820bcbe4dc9f4f45a9f403e43a87c\r\na=rtcp-mux\r\na=sctpmap:5000 webrtc-datachannel 256\r\na=max-message-size:1073741823\r\n", session: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 5425592836925098230 0 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 16:8D:47:17:BE:5B:A5:48:73:D3:5B:11:7A:F5:1C:0A:49:1F:D3:FE:FE:E4:50:67:DA:BD:1B:1B:2C:DF:AC:E3\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\n" }

Object { media: (3) […], raw: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 5425592836925098230 1 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 16:8D:47:17:BE:5B:A5:48:73:D3:5B:11:7A:F5:1C:0A:49:1F:D3:FE:FE:E4:50:67:DA:BD:1B:1B:2C:DF:AC:E3\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\nm=audio 41888 RTP/SAVPF 111 126\r\nc=IN IP4 172.16.23.115\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 maxplaybackrate=48000;stereo=1;useinbandfec=1\r\na=fmtp:126 0-15\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:005f3a18\r\na=ice-pwd:7a3820bcbe4dc9f4f45a9f403e43a87c\r\na=candidate:0 1 UDP 2122252543 172.16.23.115 41888 typ host\r\na=candidate:1 1 TCP 2105524479 172.16.23.115 9 typ host tcptype active\r\na=end-of-candidates\r\na=ssrc:628663743 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=ssrc:628663743 msid:{b401709b-8d29-4980-a999-e4c23f28e04b}-1 {18925a65-7712-4e5e-bae5-a33bb1f6399d}-1\r\na=ssrc:3093851283 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 107 101\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:107 H264/90000\r\na=rtpmap:101 VP9/90000\r\na=fmtp:107 profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1\r\na=fmtp:100 max-fs=12288;max-fr=60\r\na=fmtp:101 max-fs=12288;max-fr=60\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:107 nack\r\na=rtcp-fb:107 nack pli\r\na=rtcp-fb:107 ccm fir\r\na=rtcp-fb:101 nack\r\na=rtcp-fb:101 nack pli\r\na=rtcp-fb:101 ccm fir\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:005f3a18\r\na=ice-pwd:7a3820bcbe4dc9f4f45a9f403e43a87c\r\na=ssrc:2205653073 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=ssrc:2205653073 msid:{635f66df-a2ac-4c01-8bf2-af84c55689c7}-1 {453d82fa-870d-447f-9f69-88fbfc13b9f6}-1\r\na=ssrc:3854158421 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=rtcp-mux\r\nm=application 9 DTLS/SCTP 5000\r\nc=IN IP4 0.0.0.0\r\na=setup:active\r\na=mid:data\r\na=sendrecv\r\na=ice-ufrag:005f3a18\r\na=ice-pwd:7a3820bcbe4dc9f4f45a9f403e43a87c\r\na=rtcp-mux\r\na=sctpmap:5000 webrtc-datachannel 256\r\na=max-message-size:1073741823\r\n", session: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 5425592836925098230 1 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 16:8D:47:17:BE:5B:A5:48:73:D3:5B:11:7A:F5:1C:0A:49:1F:D3:FE:FE:E4:50:67:DA:BD:1B:1B:2C:DF:AC:E3\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\n" }
Logger.js:154:22
2020-03-26T12:02:39.709Z [modules/xmpp/JingleSessionPC.js] <value>:  removal not necessary Logger.js:154:22
2020-03-26T12:02:39.716Z [modules/xmpp/JingleSessionPC.js] <value>:  Sending source-add 
<iq to="[email protected]/focus" type="set" xmlns="jabber:client">
Logger.js:154:22
2020-03-26T12:02:39.749Z [modules/xmpp/JingleSessionPC.js] <value>:  sendIceCandidate: last candidate. Logger.js:154:22
2020-03-26T12:02:39.752Z [modules/RTC/JitsiRemoteTrack.js] <value>:  "onunmute" event(1585224159752): RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.754Z [modules/RTC/JitsiRemoteTrack.js] <value>:  "onunmute" event(1585224159753): RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:39.819Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:39.828Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:41.184Z [modules/xmpp/strophe.jingle.js] <value>:  on jingle source-add from [email protected]/focus 
<iq id="cGpwc3dqZnBjbTR3aTZ5dUBt…wCrYndmyrYx+qOvLMKs6egN" type="set" from="[email protected]/focus" to="[email protected]/15IQ3ycs" xmlns="jabber:client">
Logger.js:154:22
2020-03-26T12:02:41.211Z [modules/xmpp/JingleSessionPC.js] <value/<>:  Processing addRemoteStream Logger.js:154:22
2020-03-26T12:02:41.212Z [modules/xmpp/JingleSessionPC.js] <value/<>:  ICE connection state:  connected Logger.js:154:22
2020-03-26T12:02:41.236Z [modules/xmpp/JingleSessionPC.js] <value>:  Renegotiate: setting remote description Logger.js:154:22
Halt: There are no SSRC groups in the remote description. index.js:146:16
2020-03-26T12:02:41.247Z [modules/xmpp/RtxModifier.js] <value>:  RtxModifier doing nothing, no video ssrcGroups present Logger.js:154:22
2020-03-26T12:02:41.292Z [modules/xmpp/JingleSessionPC.js] <value/<>:  Renegotiate: creating answer Logger.js:154:22
2020-03-26T12:02:41.337Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._processLocalSSRCsMap>:  No SSRCs found in the local SDP for LocalTrack[1,audio] MSID: {b401709b-8d29-4980-a999-e4c23f28e04b} {75eda9a0-0f0c-4756-af53-24577e687e1f} in TPC[1,p2p:false] Logger.js:154:22
2020-03-26T12:02:41.338Z [modules/xmpp/JingleSessionPC.js] <value/</<>:  Renegotiate: setting local description Logger.js:154:22
2020-03-26T12:02:41.415Z [modules/xmpp/JingleSessionPC.js] <value/</<>:  addRemoteStream - OK, SDPs:  
Object { media: (3) […], raw: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 5425592836925098230 1 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 16:8D:47:17:BE:5B:A5:48:73:D3:5B:11:7A:F5:1C:0A:49:1F:D3:FE:FE:E4:50:67:DA:BD:1B:1B:2C:DF:AC:E3\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\nm=audio 41888 RTP/SAVPF 111 126\r\nc=IN IP4 172.16.23.115\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 maxplaybackrate=48000;stereo=1;useinbandfec=1\r\na=fmtp:126 0-15\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:005f3a18\r\na=ice-pwd:7a3820bcbe4dc9f4f45a9f403e43a87c\r\na=candidate:0 1 UDP 2122252543 172.16.23.115 41888 typ host\r\na=candidate:1 1 TCP 2105524479 172.16.23.115 9 typ host tcptype active\r\na=end-of-candidates\r\na=ssrc:628663743 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=ssrc:628663743 msid:{b401709b-8d29-4980-a999-e4c23f28e04b}-1 {18925a65-7712-4e5e-bae5-a33bb1f6399d}-1\r\na=ssrc:3093851283 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 107 101\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:107 H264/90000\r\na=rtpmap:101 VP9/90000\r\na=fmtp:107 profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1\r\na=fmtp:100 max-fs=12288;max-fr=60\r\na=fmtp:101 max-fs=12288;max-fr=60\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:107 nack\r\na=rtcp-fb:107 nack pli\r\na=rtcp-fb:107 ccm fir\r\na=rtcp-fb:101 nack\r\na=rtcp-fb:101 nack pli\r\na=rtcp-fb:101 ccm fir\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:005f3a18\r\na=ice-pwd:7a3820bcbe4dc9f4f45a9f403e43a87c\r\na=ssrc:2205653073 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=ssrc:2205653073 msid:{635f66df-a2ac-4c01-8bf2-af84c55689c7}-1 {453d82fa-870d-447f-9f69-88fbfc13b9f6}-1\r\na=ssrc:3854158421 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=rtcp-mux\r\nm=application 9 DTLS/SCTP 5000\r\nc=IN IP4 0.0.0.0\r\na=setup:active\r\na=mid:data\r\na=sendrecv\r\na=ice-ufrag:005f3a18\r\na=ice-pwd:7a3820bcbe4dc9f4f45a9f403e43a87c\r\na=rtcp-mux\r\na=sctpmap:5000 webrtc-datachannel 256\r\na=max-message-size:1073741823\r\n", session: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 5425592836925098230 1 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 16:8D:47:17:BE:5B:A5:48:73:D3:5B:11:7A:F5:1C:0A:49:1F:D3:FE:FE:E4:50:67:DA:BD:1B:1B:2C:DF:AC:E3\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\n" }

Object { media: (3) […], raw: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 5425592836925098230 2 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 16:8D:47:17:BE:5B:A5:48:73:D3:5B:11:7A:F5:1C:0A:49:1F:D3:FE:FE:E4:50:67:DA:BD:1B:1B:2C:DF:AC:E3\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\nm=audio 41888 RTP/SAVPF 111 126\r\nc=IN IP4 172.16.23.115\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 maxplaybackrate=48000;stereo=1;useinbandfec=1\r\na=fmtp:126 0-15\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:005f3a18\r\na=ice-pwd:7a3820bcbe4dc9f4f45a9f403e43a87c\r\na=candidate:0 1 UDP 2122252543 172.16.23.115 41888 typ host\r\na=candidate:1 1 TCP 2105524479 172.16.23.115 9 typ host tcptype active\r\na=end-of-candidates\r\na=ssrc:628663743 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=ssrc:628663743 msid:{b401709b-8d29-4980-a999-e4c23f28e04b}-1 {18925a65-7712-4e5e-bae5-a33bb1f6399d}-1\r\na=ssrc:3093851283 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 107 101\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:107 H264/90000\r\na=rtpmap:101 VP9/90000\r\na=fmtp:107 profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1\r\na=fmtp:100 max-fs=12288;max-fr=60\r\na=fmtp:101 max-fs=12288;max-fr=60\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:107 nack\r\na=rtcp-fb:107 nack pli\r\na=rtcp-fb:107 ccm fir\r\na=rtcp-fb:101 nack\r\na=rtcp-fb:101 nack pli\r\na=rtcp-fb:101 ccm fir\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:005f3a18\r\na=ice-pwd:7a3820bcbe4dc9f4f45a9f403e43a87c\r\na=ssrc:2205653073 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=ssrc:2205653073 msid:{635f66df-a2ac-4c01-8bf2-af84c55689c7}-1 {453d82fa-870d-447f-9f69-88fbfc13b9f6}-1\r\na=ssrc:3854158421 cname:{171b4391-11a7-49c6-9fe8-baca6acb6844}-1\r\na=rtcp-mux\r\nm=application 9 DTLS/SCTP 5000\r\nc=IN IP4 0.0.0.0\r\na=setup:active\r\na=mid:data\r\na=sendrecv\r\na=ice-ufrag:005f3a18\r\na=ice-pwd:7a3820bcbe4dc9f4f45a9f403e43a87c\r\na=rtcp-mux\r\na=sctpmap:5000 webrtc-datachannel 256\r\na=max-message-size:1073741823\r\n", session: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 5425592836925098230 2 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 16:8D:47:17:BE:5B:A5:48:73:D3:5B:11:7A:F5:1C:0A:49:1F:D3:FE:FE:E4:50:67:DA:BD:1B:1B:2C:DF:AC:E3\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\n" }
Logger.js:154:22
2020-03-26T12:02:41.429Z [modules/xmpp/JingleSessionPC.js] <value>:  removal not necessary Logger.js:154:22
2020-03-26T12:02:41.434Z [modules/xmpp/JingleSessionPC.js] <value>:  addition not necessary Logger.js:154:22
2020-03-26T12:02:41.480Z [modules/xmpp/JingleSessionPC.js] <value>:  sendIceCandidate: last candidate. Logger.js:154:22
2020-03-26T12:02:41.486Z [modules/RTC/JitsiRemoteTrack.js] <value>:  loadedmetadata handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:41.486Z [modules/RTC/JitsiRemoteTrack.js] <value>:  loadeddata handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:41.488Z [modules/RTC/JitsiRemoteTrack.js] <value>:  canplay handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
(TIME) Render video:     12654 JitsiRemoteTrack.js:212:16
(TIME) TTFM video:   9026 JitsiRemoteTrack.js:231:16
2020-03-26T12:02:41.497Z [modules/RTC/JitsiRemoteTrack.js] <value>:  play handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:41.499Z [modules/UI/videolayout/VideoLayout.js] <remoteVideoActive>:  f5fec0bb video is now active 
<video id="remoteVideo_bd8cec2d-6e89-4630-b157-05e13e69de02-1" muted="true" autoplay="" style="display: none;">
Logger.js:154:22
2020-03-26T12:02:41.528Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:41.535Z [modules/UI/videolayout/SmallVideo.js] <w.prototype.updateView>:  Displaying video for f5fec0bb, data: [{"isCurrentlyOnLargeVideo":true,"isHovered":false,"isAudioOnly":false,"tileViewEnabled":true,"isVideoPlayable":true,"hasVideo":true,"connectionStatus":"active","mutedWhileDisconnected":false,"wasVideoPlayed":true,"videoStream":true,"isVideoMuted":false,"videoStreamMuted":false}] Logger.js:154:22
2020-03-26T12:02:41.548Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:41.556Z [modules/UI/videolayout/LargeVideoManager.js] <scheduleLargeVideoUpdate/<>:  hover in %s f5fec0bb Logger.js:154:22
2020-03-26T12:02:41.566Z [modules/RTC/JitsiRemoteTrack.js] <value>:  playing handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:41.567Z [modules/RTC/JitsiRemoteTrack.js] <value>:  canplaythrough handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:41.600Z [modules/RTC/JitsiRemoteTrack.js] <value>:  loadedmetadata handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:41.610Z [modules/RTC/JitsiRemoteTrack.js] <value>:  loadeddata handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:41.613Z [modules/RTC/JitsiRemoteTrack.js] <value>:  canplay handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:41.615Z [modules/RTC/JitsiRemoteTrack.js] <value>:  play handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:41.618Z [modules/RTC/JitsiRemoteTrack.js] <value>:  playing handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:41.621Z [modules/RTC/JitsiRemoteTrack.js] <value>:  canplaythrough handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:41.624Z [modules/RTC/BridgeChannel.js] <value/e.onmessage>:  Channel new dominant speaker event:  b6745f32 Logger.js:154:22
2020-03-26T12:02:41.684Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:41.869Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:41.876Z [modules/UI/videolayout/RemoteVideo.js] <_.prototype.updateConnectionStatusIndicator>:  f5fec0bb thumbnail connection status: active Logger.js:154:22
2020-03-26T12:02:43.426Z [modules/xmpp/ChatRoom.js] <value>:  Ignore focus: [email protected]/focus, real JID: [email protected]/focus1065545029839 Logger.js:154:22
2020-03-26T12:02:43.450Z [modules/xmpp/ChatRoom.js] <value>:  Ignore focus: [email protected]/focus, real JID: [email protected]/focus1065545029839 Logger.js:154:22
2020-03-26T12:02:43.514Z [features/overlay] <componentDidMount>:  The conference will be reloaded after 19 seconds. Logger.js:154:22
2020-03-26T12:02:43.549Z [modules/UI/videolayout/VideoLayout.js] <changeUserAvatar>:  Missed avatar update - no small video yet for local Logger.js:154:22
2020-03-26T12:02:43.592Z [modules/UI/videolayout/VideoLayout.js] <removeParticipantContainer>:  Removing remote video: f5fec0bb Logger.js:154:22
2020-03-26T12:02:43.594Z [modules/UI/videolayout/SmallVideo.js] <w.prototype.remove>:  Remove thumbnail f5fec0bb Logger.js:154:22
2020-03-26T12:02:43.632Z [conference.js] <_onConferenceFailed>:  CONFERENCE FAILED: conference.videobridgeNotAvailable Logger.js:154:22
2020-03-26T12:02:43.665Z [modules/UI/videolayout/SmallVideo.js] <w.prototype.remove>:  Remove thumbnail b6745f32 Logger.js:154:22
2020-03-26T12:02:43.711Z [modules/rttmonitor/rttmonitor.js] <value>:  Stopping RttMonitor. Logger.js:154:22
2020-03-26T12:02:43.712Z [modules/e2eping/e2eping.js] <value>:  Stopping e2eping Logger.js:154:22
2020-03-26T12:02:43.719Z [modules/xmpp/ChatRoom.js] <value>:  do leave [email protected]/b6745f32 Logger.js:154:22
2020-03-26T12:02:43.730Z [modules/RTC/RTC.js] <value>:  Removed remote tracks for f5fec0bb count: 2 Logger.js:154:22
2020-03-26T12:02:43.778Z [features/base/lastn] There is no active conference, not updating last N Logger.js:154:22
2020-03-26T12:02:43.794Z [modules/UI/videolayout/VideoLayout.js] <removeParticipantContainer>:  No remote video for f5fec0bb Logger.js:154:22
2020-03-26T12:02:43.802Z [conference.js] <_setupListeners/<>:  USER f5fec0bb LEFT: 
Object { _jid: "[email protected]/f5fec0bb", _id: "f5fec0bb", _conference: {…}, _displayName: "hp", _supportsDTMF: false, _tracks: (2) […], _role: "participant", _status: undefined, _hidden: false, _statsID: "Alden-tsp", … }
Logger.js:154:22
2020-03-26T12:02:43.804Z [JitsiConference.js] <ee.prototype._maybeStartOrStopP2P>:  Auto P2P disabled Logger.js:154:22
2020-03-26T12:02:43.807Z [modules/xmpp/moderator.js] <d.prototype.onMucMemberLeft>:  Someone left is it focus ? [email protected]/f5fec0bb Logger.js:154:22
2020-03-26T12:02:43.810Z [modules/xmpp/strophe.jingle.js] <value>:  on jingle source-remove from [email protected]/focus 
<iq id="cGpwc3dqZnBjbTR3aTZ5dUBt…ACrYndmyrYx+qOvLMKs6egN" type="set" from="[email protected]/focus" to="[email protected]/15IQ3ycs" xmlns="jabber:client">
Logger.js:154:22
2020-03-26T12:02:43.875Z [modules/RTC/TraceablePeerConnection.js] <w.prototype.close>:  Closing TPC[1,p2p:false]... Logger.js:154:22
2020-03-26T12:02:43.896Z [modules/RTC/JitsiRemoteTrack.js] <value>:  pause handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:43.899Z [modules/RTC/JitsiRemoteTrack.js] <value>:  pause handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: live, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:43.915Z [modules/UI/videolayout/VideoLayout.js] <changeUserAvatar>:  Missed avatar update - no small video yet for b6745f32 Logger.js:154:22
2020-03-26T12:02:43.931Z [modules/RTC/JitsiRemoteTrack.js] <value/<>:  "onended" event(1585224163931): RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: ended, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:43.932Z [modules/RTC/JitsiRemoteTrack.js] <value/<>:  "onended" event(1585224163932): RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: ended, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:43.941Z [modules/RTC/JitsiRemoteTrack.js] <value>:  ended handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: audio, ssrc: 1379418745, p2p: false, status: readyState: ended, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:43.946Z [modules/RTC/JitsiRemoteTrack.js] <value>:  pause handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: ended, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:43.948Z [modules/RTC/JitsiRemoteTrack.js] <value>:  ended handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: ended, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:43.949Z [modules/RTC/JitsiRemoteTrack.js] <value>:  ended handler was called for a container with attached RemoteTrack[userID: f5fec0bb, type: video, ssrc: 1948136253, p2p: false, status: readyState: ended, muted: false, enabled: true] Logger.js:154:22
2020-03-26T12:02:44.692Z [modules/xmpp/xmpp.js] <value>:  (TIME) Strophe disconnecting:  15857 Logger.js:154:22
2020-03-26T12:02:44.732Z [modules/xmpp/xmpp.js] <value>:  (TIME) Strophe disconnected:   15895 Logger.js:154:22
2020-03-26T12:02:44.734Z [modules/xmpp/strophe.ping.js] <value>:  Ping interval cleared Logger.js:154:22

and this is the output of the second participant:

2020-03-26T12:02:30.059Z [modules/xmpp/xmpp.js] <value>:  (TIME) Strophe disconnecting:  25045 Logger.js:154:22
2020-03-26T12:02:30.060Z [modules/xmpp/xmpp.js] <value>:  (TIME) Strophe disconnected:   25046 Logger.js:154:22
(TIME) index.html loaded:    288 test:19:17
2020-03-26T12:02:30.845Z [index.web] (TIME) document ready:  867 Logger.js:154:22
2020-03-26T12:02:30.923Z [modules/UI/videolayout/VideoLayout.js] <changeUserAvatar>:  Missed avatar update - no small video yet for undefined Logger.js:154:22
2020-03-26T12:02:30.942Z [features/base/media] Start muted: Logger.js:154:22
2020-03-26T12:02:30.945Z [features/base/media] Start audio only set to false Logger.js:154:22
2020-03-26T12:02:30.948Z [features/analytics] <ee/</<>:  Error creating analytics handler: Error: Failed to initialize Amplitude handler, no APP key Logger.js:154:22
2020-03-26T12:02:31.013Z [modules/UI/videolayout/SmallVideo.js] <w.prototype.updateView>:  Unable to init avatar - no id 
Object { videoSpanId: "localVideoContainer", streamEndedCallback: _updateLargeVideoIfDisplayed(), container: span#localVideoContainer.videocontainer, "$container": {…}, localVideoId: null, isLocal: true, emitter: {…}, statsPopoverLocation: "left top", _isModerator: false, isAudioMuted: false, … }
Logger.js:154:22
2020-03-26T12:02:31.020Z [modules/UI/videolayout/SmallVideo.js] <w.prototype.updateView>:  Unable to init avatar - no id 
Object { videoSpanId: "localVideoContainer", streamEndedCallback: _updateLargeVideoIfDisplayed(), container: span#localVideoContainer.videocontainer, "$container": {…}, localVideoId: null, isLocal: true, emitter: {…}, statsPopoverLocation: "left top", _isModerator: false, isAudioMuted: false, … }
Logger.js:154:22
2020-03-26T12:02:31.039Z [features/base/devices] <k/</</<>:  Failed to set audio output device.
                        Default audio output device will be used instead Error: Audio output device change is not supported Logger.js:154:22
2020-03-26T12:02:31.248Z [modules/xmpp/xmpp.js] <value>:  (TIME) Strophe connecting:     1269 Logger.js:154:22
2020-03-26T12:02:31.772Z [modules/xmpp/xmpp.js] <value>:  (TIME) Strophe connected:  1794 Logger.js:154:22
2020-03-26T12:02:36.813Z [modules/RTC/RTCUtils.js] <value/</<>:  onUserMediaSuccess Logger.js:154:22
2020-03-26T12:02:36.842Z [conference.js] <init/<>:  initialized with 2 local tracks Logger.js:154:22
2020-03-26T12:02:36.897Z [modules/remotecontrol/RemoteControl.js] <init>:  Initializing remote control. Logger.js:154:22
2020-03-26T12:02:36.904Z [features/base/tracks] <F/</</<>:  Replace audio track - unmuted Logger.js:154:22
2020-03-26T12:02:36.911Z [features/base/tracks] <F/</</<>:  Replace video track - unmuted Logger.js:154:22
2020-03-26T12:02:37.042Z [features/local-recording] <setMicDevice>:  Switch microphone to pnxgpXPBK51RS4Frtz/UzzfR9UJmpQbthkqcvDnXDX4= Logger.js:154:22
2020-03-26T12:02:37.097Z [modules/xmpp/ChatRoom.js] <value>:  entered [email protected]/b6745f32 
Object { affiliation: "owner", role: "moderator", jid: "[email protected]/15IQ3ycs", isFocus: false, isHiddenDomain: false, statsID: "Darius-x6j", nick: undefined }
Logger.js:154:22
2020-03-26T12:02:37.174Z [conference.js] <_setupListeners/<>:  USER b6745f32 connnected: 
Object { _jid: "[email protected]/b6745f32", _id: "b6745f32", _conference: {…}, _displayName: undefined, _supportsDTMF: false, _tracks: [], _role: "moderator", _status: undefined, _hidden: false, _statsID: "Darius-x6j", … }
Logger.js:154:22
2020-03-26T12:02:37.223Z [modules/xmpp/ChatRoom.js] <value>:  entered [email protected]/focus 
Object { affiliation: "owner", role: "moderator", jid: "[email protected]/focus1065545029839", isFocus: true, isHiddenDomain: false }
Logger.js:154:22
2020-03-26T12:02:37.243Z [modules/xmpp/ChatRoom.js] <value>:  (TIME) MUC joined:     7266 Logger.js:154:22
2020-03-26T12:02:37.327Z [modules/xmpp/ChatRoom.js] <value>:  Subject is changed to Logger.js:154:22
2020-03-26T12:02:37.717Z [modules/xmpp/strophe.jingle.js] <value>:  on jingle session-initiate from [email protected]/focus 
<iq id="bThvZF8yem9zYjZ4Y3UyaEBt…ACrYndmyrYx+qOvLMKs6egN" type="set" from="[email protected]/focus" to="[email protected]/h_IrH0Cj" xmlns="jabber:client">
Logger.js:154:22
2020-03-26T12:02:37.718Z [modules/xmpp/strophe.jingle.js] <value>:  (TIME) received session-initiate:    7740 Logger.js:154:22
SdpSimulcast: using 3 layers index.js:44:12
onaddstream is deprecated! Use peerConnection.ontrack instead. lib-jitsi-meet.min.js:22
2020-03-26T12:02:37.781Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._processLocalSSRCsMap>:  No SSRCs found in the local SDP for LocalTrack[1,audio] MSID: {ad20afd3-905d-45a8-95fa-319021a556d0} {3ec3728a-73ae-46ff-bb09-72db4a4f4081} in TPC[1,p2p:false] Logger.js:154:22
2020-03-26T12:02:37.824Z [JitsiMeetJS.js] <getGlobalOnErrorHandler>:  UnhandledError: TypeError: t[2] is undefined Script: https://meet.example.org/libs/lib-jitsi-meet.min.js?v=3729 Line: 6 Column: 257847 StackTrace:  TypeError: "t[2] is undefined"
    parseCandidate sdp.js:65
    RTCIceCandidate common_shim.js:85
    shimRTCIceCandidate common_shim.js:106
    o common_shim.js:27
Logger.js:154:22
2020-03-26T12:02:37.828Z [modules/xmpp/JingleSessionPC.js] <value>:  sendIceCandidate: last candidate. Logger.js:154:22
2020-03-26T12:02:37.829Z [modules/xmpp/JingleSessionPC.js] <value/this.peerconnection.oniceconnectionstatechange>:  (TIME) ICE checking P2P? false:  7851 Logger.js:154:22
TypeError: t[2] is undefined sdp.js:65:4
2020-03-26T12:02:37.834Z [modules/xmpp/JingleSessionPC.js] <value>:  sendIceCandidates 
Array(4) [ RTCIceCandidate, RTCIceCandidate, RTCIceCandidate, RTCIceCandidate ]
Logger.js:154:22
2020-03-26T12:02:38.097Z [modules/xmpp/JingleSessionPC.js] <value/this.peerconnection.oniceconnectionstatechange>:  (TIME) ICE connected P2P? false:     8118 Logger.js:154:22
2020-03-26T12:02:38.131Z [JitsiConferenceEventManager.js] <b.prototype.setupRTCListeners/<>:  (TIME) data.channel.opened 8153 Logger.js:154:22
2020-03-26T12:02:38.133Z [modules/RTC/BridgeChannel.js] <value>:  sending pinned changed notification to the bridge for endpoint  null Logger.js:154:22
2020-03-26T12:02:38.133Z [modules/RTC/BridgeChannel.js] <value>:  sending selected changed notification to the bridge for endpoints 
Array [ "b6745f32" ]
Logger.js:154:22
2020-03-26T12:02:38.134Z [modules/RTC/BridgeChannel.js] <value>:  sending a ReceiverVideoConstraint message with a maxFrameHeight of 1080 pixels Logger.js:154:22
2020-03-26T12:02:38.690Z [modules/xmpp/strophe.jingle.js] <value>:  on jingle source-add from [email protected]/focus 
<iq id="bThvZF8yem9zYjZ4Y3UyaEBt…gCrYndmyrYx+qOvLMKs6egN" type="set" from="[email protected]/focus" to="[email protected]/h_IrH0Cj" xmlns="jabber:client">
Logger.js:154:22
2020-03-26T12:02:38.697Z [modules/xmpp/JingleSessionPC.js] <value/<>:  Processing addRemoteStream Logger.js:154:22
2020-03-26T12:02:38.698Z [modules/xmpp/JingleSessionPC.js] <value/<>:  ICE connection state:  connected Logger.js:154:22
2020-03-26T12:02:38.715Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._remoteTrackAdded>:  TPC[1,p2p:false] associated ssrc b6745f32 628663743 Logger.js:154:22
2020-03-26T12:02:38.738Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._remoteTrackAdded>:  TPC[1,p2p:false] associated ssrc b6745f32 2205653073 Logger.js:154:22
2020-03-26T12:02:38.779Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._processLocalSSRCsMap>:  No SSRCs found in the local SDP for LocalTrack[1,audio] MSID: {ad20afd3-905d-45a8-95fa-319021a556d0} {3ec3728a-73ae-46ff-bb09-72db4a4f4081} in TPC[1,p2p:false] Logger.js:154:22
(TIME) Render audio:     8832 JitsiRemoteTrack.js:212:16
(TIME) TTFM audio:   2787 JitsiRemoteTrack.js:231:16
2020-03-26T12:02:38.827Z [modules/xmpp/JingleSessionPC.js] <value/</<>:  addRemoteStream - OK, SDPs:  
Object { media: (3) […], raw: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 8853628918185015159 0 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 71:DD:BC:00:13:73:DD:CC:38:0A:3D:46:BF:5E:EE:78:38:87:7C:04:12:F9:17:6D:E0:9F:F0:1D:46:EE:A2:9E\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\nm=audio 60649 RTP/SAVPF 111 126\r\nc=IN IP4 172.16.23.107\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 maxplaybackrate=48000;stereo=1;useinbandfec=1\r\na=fmtp:126 0-15\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:058c2fe5\r\na=ice-pwd:f3915c135c4c07dbded39ddcee924820\r\na=candidate:0 1 UDP 2122252543 172.16.23.107 60649 typ host\r\na=candidate:1 1 UDP 2122187007 192.168.122.1 41378 typ host\r\na=candidate:2 1 TCP 2105524479 172.16.23.107 9 typ host tcptype active\r\na=candidate:3 1 TCP 2105458943 192.168.122.1 9 typ host tcptype active\r\na=end-of-candidates\r\na=ssrc:1379418745 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=ssrc:1379418745 msid:{ad20afd3-905d-45a8-95fa-319021a556d0}-1 {99cf19b8-6e66-4bd9-9f61-0f659398fefa}-1\r\na=rtcp-mux\r\nm=video 60649 RTP/SAVPF 100 107 101\r\nc=IN IP4 172.16.23.107\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:107 H264/90000\r\na=rtpmap:101 VP9/90000\r\na=fmtp:107 profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1\r\na=fmtp:100 max-fs=12288;max-fr=60\r\na=fmtp:101 max-fs=12288;max-fr=60\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:107 nack\r\na=rtcp-fb:107 nack pli\r\na=rtcp-fb:107 ccm fir\r\na=rtcp-fb:101 nack\r\na=rtcp-fb:101 nack pli\r\na=rtcp-fb:101 ccm fir\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:058c2fe5\r\na=ice-pwd:f3915c135c4c07dbded39ddcee924820\r\na=ssrc:1948136253 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=ssrc:1948136253 msid:{bd8cec2d-6e89-4630-b157-05e13e69de02}-1 {91e25763-e40e-4770-bccc-f4ecaa33d8b0}-1\r\na=rtcp-mux\r\nm=application 60649 DTLS/SCTP 5000\r\nc=IN IP4 172.16.23.107\r\na=setup:active\r\na=mid:data\r\na=sendrecv\r\na=ice-ufrag:058c2fe5\r\na=ice-pwd:f3915c135c4c07dbded39ddcee924820\r\na=rtcp-mux\r\na=sctpmap:5000 webrtc-datachannel 256\r\na=max-message-size:1073741823\r\n", session: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 8853628918185015159 0 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 71:DD:BC:00:13:73:DD:CC:38:0A:3D:46:BF:5E:EE:78:38:87:7C:04:12:F9:17:6D:E0:9F:F0:1D:46:EE:A2:9E\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\n" }

Object { media: (3) […], raw: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 8853628918185015159 1 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 71:DD:BC:00:13:73:DD:CC:38:0A:3D:46:BF:5E:EE:78:38:87:7C:04:12:F9:17:6D:E0:9F:F0:1D:46:EE:A2:9E\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\nm=audio 60649 RTP/SAVPF 111 126\r\nc=IN IP4 172.16.23.107\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 maxplaybackrate=48000;stereo=1;useinbandfec=1\r\na=fmtp:126 0-15\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:058c2fe5\r\na=ice-pwd:f3915c135c4c07dbded39ddcee924820\r\na=candidate:0 1 UDP 2122252543 172.16.23.107 60649 typ host\r\na=candidate:1 1 UDP 2122187007 192.168.122.1 41378 typ host\r\na=candidate:2 1 TCP 2105524479 172.16.23.107 9 typ host tcptype active\r\na=candidate:3 1 TCP 2105458943 192.168.122.1 9 typ host tcptype active\r\na=end-of-candidates\r\na=ssrc:1379418745 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=ssrc:1379418745 msid:{ad20afd3-905d-45a8-95fa-319021a556d0}-1 {99cf19b8-6e66-4bd9-9f61-0f659398fefa}-1\r\na=ssrc:4075287468 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 107 101\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:107 H264/90000\r\na=rtpmap:101 VP9/90000\r\na=fmtp:107 profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1\r\na=fmtp:100 max-fs=12288;max-fr=60\r\na=fmtp:101 max-fs=12288;max-fr=60\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:107 nack\r\na=rtcp-fb:107 nack pli\r\na=rtcp-fb:107 ccm fir\r\na=rtcp-fb:101 nack\r\na=rtcp-fb:101 nack pli\r\na=rtcp-fb:101 ccm fir\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:058c2fe5\r\na=ice-pwd:f3915c135c4c07dbded39ddcee924820\r\na=ssrc:1486434414 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=ssrc:1948136253 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=ssrc:1948136253 msid:{bd8cec2d-6e89-4630-b157-05e13e69de02}-1 {91e25763-e40e-4770-bccc-f4ecaa33d8b0}-1\r\na=rtcp-mux\r\nm=application 9 DTLS/SCTP 5000\r\nc=IN IP4 0.0.0.0\r\na=setup:active\r\na=mid:data\r\na=sendrecv\r\na=ice-ufrag:058c2fe5\r\na=ice-pwd:f3915c135c4c07dbded39ddcee924820\r\na=rtcp-mux\r\na=sctpmap:5000 webrtc-datachannel 256\r\na=max-message-size:1073741823\r\n", session: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 8853628918185015159 1 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 71:DD:BC:00:13:73:DD:CC:38:0A:3D:46:BF:5E:EE:78:38:87:7C:04:12:F9:17:6D:E0:9F:F0:1D:46:EE:A2:9E\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\n" }
Logger.js:154:22
2020-03-26T12:02:38.832Z [modules/xmpp/JingleSessionPC.js] <value>:  removal not necessary Logger.js:154:22
2020-03-26T12:02:38.841Z [modules/xmpp/JingleSessionPC.js] <value>:  sendIceCandidate: last candidate. Logger.js:154:22
(TIME) Render video:     8906 JitsiRemoteTrack.js:212:16
(TIME) TTFM video:   2861 JitsiRemoteTrack.js:231:16
2020-03-26T12:02:41.126Z [modules/xmpp/strophe.jingle.js] <value>:  on jingle source-add from [email protected]/focus 
<iq id="bThvZF8yem9zYjZ4Y3UyaEBt…ACrYndmyrYx+qOvLMKs6egN" type="set" from="[email protected]/focus" to="[email protected]/h_IrH0Cj" xmlns="jabber:client">
Logger.js:154:22
2020-03-26T12:02:41.135Z [modules/xmpp/JingleSessionPC.js] <value/<>:  Processing addRemoteStream Logger.js:154:22
2020-03-26T12:02:41.135Z [modules/xmpp/JingleSessionPC.js] <value/<>:  ICE connection state:  connected Logger.js:154:22
2020-03-26T12:02:41.158Z [modules/RTC/TraceablePeerConnection.js] <w.prototype._processLocalSSRCsMap>:  No SSRCs found in the local SDP for LocalTrack[1,audio] MSID: {ad20afd3-905d-45a8-95fa-319021a556d0} {3ec3728a-73ae-46ff-bb09-72db4a4f4081} in TPC[1,p2p:false] Logger.js:154:22
2020-03-26T12:02:41.168Z [modules/xmpp/JingleSessionPC.js] <value/</<>:  addRemoteStream - OK, SDPs:  
Object { media: (3) […], raw: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 8853628918185015159 1 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 71:DD:BC:00:13:73:DD:CC:38:0A:3D:46:BF:5E:EE:78:38:87:7C:04:12:F9:17:6D:E0:9F:F0:1D:46:EE:A2:9E\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\nm=audio 60649 RTP/SAVPF 111 126\r\nc=IN IP4 172.16.23.107\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 maxplaybackrate=48000;stereo=1;useinbandfec=1\r\na=fmtp:126 0-15\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:058c2fe5\r\na=ice-pwd:f3915c135c4c07dbded39ddcee924820\r\na=candidate:0 1 UDP 2122252543 172.16.23.107 60649 typ host\r\na=candidate:1 1 UDP 2122187007 192.168.122.1 41378 typ host\r\na=candidate:2 1 TCP 2105524479 172.16.23.107 9 typ host tcptype active\r\na=candidate:3 1 TCP 2105458943 192.168.122.1 9 typ host tcptype active\r\na=end-of-candidates\r\na=ssrc:1379418745 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=ssrc:1379418745 msid:{ad20afd3-905d-45a8-95fa-319021a556d0}-1 {99cf19b8-6e66-4bd9-9f61-0f659398fefa}-1\r\na=ssrc:4075287468 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 107 101\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:107 H264/90000\r\na=rtpmap:101 VP9/90000\r\na=fmtp:107 profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1\r\na=fmtp:100 max-fs=12288;max-fr=60\r\na=fmtp:101 max-fs=12288;max-fr=60\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:107 nack\r\na=rtcp-fb:107 nack pli\r\na=rtcp-fb:107 ccm fir\r\na=rtcp-fb:101 nack\r\na=rtcp-fb:101 nack pli\r\na=rtcp-fb:101 ccm fir\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:058c2fe5\r\na=ice-pwd:f3915c135c4c07dbded39ddcee924820\r\na=ssrc:1486434414 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=ssrc:1948136253 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=ssrc:1948136253 msid:{bd8cec2d-6e89-4630-b157-05e13e69de02}-1 {91e25763-e40e-4770-bccc-f4ecaa33d8b0}-1\r\na=rtcp-mux\r\nm=application 9 DTLS/SCTP 5000\r\nc=IN IP4 0.0.0.0\r\na=setup:active\r\na=mid:data\r\na=sendrecv\r\na=ice-ufrag:058c2fe5\r\na=ice-pwd:f3915c135c4c07dbded39ddcee924820\r\na=rtcp-mux\r\na=sctpmap:5000 webrtc-datachannel 256\r\na=max-message-size:1073741823\r\n", session: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 8853628918185015159 1 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 71:DD:BC:00:13:73:DD:CC:38:0A:3D:46:BF:5E:EE:78:38:87:7C:04:12:F9:17:6D:E0:9F:F0:1D:46:EE:A2:9E\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\n" }

Object { media: (3) […], raw: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 8853628918185015159 2 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 71:DD:BC:00:13:73:DD:CC:38:0A:3D:46:BF:5E:EE:78:38:87:7C:04:12:F9:17:6D:E0:9F:F0:1D:46:EE:A2:9E\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\nm=audio 60649 RTP/SAVPF 111 126\r\nc=IN IP4 172.16.23.107\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 maxplaybackrate=48000;stereo=1;useinbandfec=1\r\na=fmtp:126 0-15\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:058c2fe5\r\na=ice-pwd:f3915c135c4c07dbded39ddcee924820\r\na=candidate:0 1 UDP 2122252543 172.16.23.107 60649 typ host\r\na=candidate:1 1 UDP 2122187007 192.168.122.1 41378 typ host\r\na=candidate:2 1 TCP 2105524479 172.16.23.107 9 typ host tcptype active\r\na=candidate:3 1 TCP 2105458943 192.168.122.1 9 typ host tcptype active\r\na=end-of-candidates\r\na=ssrc:1379418745 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=ssrc:1379418745 msid:{ad20afd3-905d-45a8-95fa-319021a556d0}-1 {99cf19b8-6e66-4bd9-9f61-0f659398fefa}-1\r\na=ssrc:4075287468 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 107 101\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:107 H264/90000\r\na=rtpmap:101 VP9/90000\r\na=fmtp:107 profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1\r\na=fmtp:100 max-fs=12288;max-fr=60\r\na=fmtp:101 max-fs=12288;max-fr=60\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:107 nack\r\na=rtcp-fb:107 nack pli\r\na=rtcp-fb:107 ccm fir\r\na=rtcp-fb:101 nack\r\na=rtcp-fb:101 nack pli\r\na=rtcp-fb:101 ccm fir\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:058c2fe5\r\na=ice-pwd:f3915c135c4c07dbded39ddcee924820\r\na=ssrc:1486434414 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=ssrc:1948136253 cname:{ca9d6dc3-504b-4789-93c2-54d9d3bd2bd3}-1\r\na=ssrc:1948136253 msid:{bd8cec2d-6e89-4630-b157-05e13e69de02}-1 {91e25763-e40e-4770-bccc-f4ecaa33d8b0}-1\r\na=rtcp-mux\r\nm=application 9 DTLS/SCTP 5000\r\nc=IN IP4 0.0.0.0\r\na=setup:active\r\na=mid:data\r\na=sendrecv\r\na=ice-ufrag:058c2fe5\r\na=ice-pwd:f3915c135c4c07dbded39ddcee924820\r\na=rtcp-mux\r\na=sctpmap:5000 webrtc-datachannel 256\r\na=max-message-size:1073741823\r\n", session: "v=0\r\no=mozilla...THIS_IS_SDPARTA-74.0 8853628918185015159 2 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=sendrecv\r\na=fingerprint:sha-256 71:DD:BC:00:13:73:DD:CC:38:0A:3D:46:BF:5E:EE:78:38:87:7C:04:12:F9:17:6D:E0:9F:F0:1D:46:EE:A2:9E\r\na=ice-options:trickle\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video data\r\n" }
Logger.js:154:22
2020-03-26T12:02:41.169Z [modules/xmpp/JingleSessionPC.js] <value>:  removal not necessary Logger.js:154:22
2020-03-26T12:02:41.170Z [modules/xmpp/JingleSessionPC.js] <value>:  addition not necessary Logger.js:154:22
2020-03-26T12:02:41.174Z [modules/xmpp/JingleSessionPC.js] <value>:  sendIceCandidate: last candidate. Logger.js:154:22
2020-03-26T12:02:42.967Z [modules/UI/videolayout/VideoLayout.js] <changeUserAvatar>:  Missed avatar update - no small video yet for local Logger.js:154:22
2020-03-26T12:02:42.977Z [modules/UI/videolayout/SmallVideo.js] <w.prototype.remove>:  Remove thumbnail b6745f32 Logger.js:154:22
2020-03-26T12:02:42.989Z [conference.js] <_onConferenceFailed>:  CONFERENCE FAILED: conference.videobridgeNotAvailable Logger.js:154:22
2020-03-26T12:02:42.998Z [modules/UI/videolayout/SmallVideo.js] <w.prototype.remove>:  Remove thumbnail f5fec0bb Logger.js:154:22
2020-03-26T12:02:43.007Z [modules/xmpp/ChatRoom.js] <value>:  do leave [email protected]/f5fec0bb Logger.js:154:22
2020-03-26T12:02:43.133Z [modules/UI/videolayout/VideoLayout.js] <removeParticipantContainer>:  No remote video for b6745f32 Logger.js:154:22
2020-03-26T12:02:43.136Z [conference.js] <_setupListeners/<>:  USER b6745f32 LEFT: 
Object { _jid: "[email protected]/b6745f32", _id: "b6745f32", _conference: {…}, _displayName: undefined, _supportsDTMF: false, _tracks: [], _role: "moderator", _status: undefined, _hidden: false, _statsID: "Darius-x6j", … }
Logger.js:154:22
2020-03-26T12:02:43.144Z [modules/xmpp/xmpp.js] <value>:  (TIME) Strophe disconnecting:  13166 Logger.js:154:22
2020-03-26T12:02:43.159Z [modules/xmpp/xmpp.js] <value>:  (TIME) Strophe disconnected:   13181 Logger.js:154:22

Grrr, no line numbers, 2020-03-26T12:02:37.824Z in the second log is interesting:

2020-03-26T12:02:37.824Z [JitsiMeetJS.js] <getGlobalOnErrorHandler>:  UnhandledError: TypeError: t[2] is undefined Script: https://meet.example.org/libs/lib-jitsi-meet.min.js?v=3729 Line: 6 Column: 257847 StackTrace:  TypeError: "t[2] is undefined"
    parseCandidate sdp.js:65
    RTCIceCandidate common_shim.js:85
    shimRTCIceCandidate common_shim.js:106
    o common_shim.js:27
Logger.js:154:22

and points to some ICE issues, I saw in the server logs already. Does STUN/ICE need some additional ports opened?

Another test with DOCKER_HOST_ADDRESS=meet.example.org in .env as well as adding

org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=192.168.123.10
org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=meet.example.org

to ~.jitsi-meet-cfg/jvb/sip-communicator.properties resulted in this very same behavior. :sob:

JS console output is here and I think the important line is
VM227 app.bundle.min.js:117 2020-03-26T10:27:03.928Z [conference.js] <z._onConferenceFailed>: CONFERENCE FAILED: conference.videobridgeNotAvailable

This means that jicofo has not detected a JVB. Can you check the jicofo, prosoddy and jvb logs? (gist them maybe for easier reading).

Frontend is Firefox 74.0

Can you please test on Chromium? We have received reports of a problem with the Firefox 74 update.

CONFERENCE FAILED: conference.videobridgeNotAvailable

Disregard that @frispete you seem to have the same problem. JVB is not being detected. Please upload your jvb, jicofo and prosody logs somewhere so we can take a look.

Is this log acceptable?
I've just used docker-compose logs. Will check for a way to remove the ansi escapes, if we take another pass. You will find a similar log in my first message: here.

JS console output is here and I think the important line is
VM227 app.bundle.min.js:117 2020-03-26T10:27:03.928Z [conference.js] <z._onConferenceFailed>: CONFERENCE FAILED: conference.videobridgeNotAvailable

This means that jicofo has not detected a JVB. Can you check the jicofo, prosoddy and jvb logs? (gist them maybe for easier reading).

https://gist.github.com/albe/ee1881dee34f1d06e3ccb26e81ef069a
Now after looking at those, apparently Address discovery through STUN failed seems to be the issue. But what could be the reason?

JVB_STUN_SERVERS=stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
Could it be, that those servers can't be reached (from inside docker or the host)?

Edit:

dockeradmin@main2:/docker/jitsi_meet$ telnet stun.l.google.com 19302
Trying 2a00:1450:400c:c07::7f...

~this should work and give a response, right?~ nope, shouldn't - STUN is UDP

@albe Can you try to set DOCKER_HOST_ADDRESS to your public IP?

Cocme to think of it, that alone may not help, comment out the JVB stun servers too.

I was gonna ask:

But, shouldn't the STUN lookup NOT be necessary if the DOCKER_HOST_ADDRESS is set (which in turn will set the NAT_HARVESTER_PUBLIC_ADDRESS)? Or am I missing something?

Haha - omg, working now! Thanks a thousand times ❤️

Correct, the STUN lookup shouldn't be necessary in that case. But I wonder if the JVB fails to start in that case...

Yippiee, that did the trick :1st_place_medal:

Thanks a bunch, mates. That's a masterpiece.

Hi @albe, since we're using a similar setup, may I kindly ask you to test a specific constellation?

Run the jitsi app on Android, and access/create a room from the public network.

It connects correctly, but no video for other participants (video is activated of course). Contrary to doing the same from the internal network (LAN), everything behaves. It appears as being related to the STUN/ICE issue, but I've tried a lot of variations of related settings without success already. Either harvest the crash behavior or the no video behavior from public networks.

Settings tried:

.env:
DOCKER_HOST_ADDRESS={meet.example.org,192.168.123.10}
JVB_TCP_HARVESTER_DISABLED={true,false}
JVB_ENABLE_APIS={xmpp,rest,colibri}

cat >> ~/.jitsi-meet-cfg/jvb/sip-communicator.properties << EOF
org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=192.168.123.10
org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=meet.example.org
EOF

web/rootfs/defaults/config.js:
    iceTransportPolicy: {'relay','all'}

While at it, do you use the etherpad option? For some reason, it should be available in the toolbar, but isn't, although it's installed fine with the default settings (and is accessible from LAN, if I wire up port 9001).

JVB_TCP_HARVESTER_DISABLED={true,false}
JVB_ENABLE_APIS={xmpp,rest,colibri}

You can stop testing these. Unless UDP is blocked in your network, then you do need TCP enabled.

DOCKER_HOST_ADDRESS should be an IP, in your case the internal one.

Are you disabling STUN on the JVB? That will guess the public IP.

The JVB logs may help here.

DOCKER_HOST_ADDRESS should be an IP, in your case the internal one.

Fixed.

The JVB logs may help here.

Here we go: https://gist.github.com/frispete/6c341cbc91442328c54b3c8d5d8e495a

Related to STUN/ICE: I noticed, that you changed the default stun servers from Google to meet-jit-si-turnrelay.jitsi.net:443 meanwhile, but .jitsi-meet-cfg/web/config.js still carries the Google servers in p2p:stunServers[].

but .jitsi-meet-cfg/web/config.js still carries the Google servers in p2p:stunServers[].

Not after you rebuild from master. That'ss part of the new release, but we found ssome last couple of problem we are ironing out.

jvb_1       | SEVERE: Health check failed in 0ms:
jvb_1       | java.lang.Exception: Address discovery through STUN failed
jvb_1       |   at org.jitsi.videobridge.health.Health.doCheck(Health.java:138)
jvb_1       |   at org.jitsi.videobridge.health.Health.doRun(Health.java:266)
jvb_1       |   at org.jitsi.utils.concurrent.PeriodicRunnableWithObject.run(PeriodicRunnableWithObject.java:87)
jvb_1       |   at org.jitsi.utils.concurrent.RecurringRunnableExecutor.run(RecurringRunnableExecutor.java:216)
jvb_1       |   at org.jitsi.utils.concurrent.RecurringRunnableExecutor.runInThread(RecurringRunnableExecutor.java:292)
jvb_1       |   at org.jitsi.utils.concurrent.RecurringRunnableExecutor.access$000(RecurringRunnableExecutor.java:36)
jvb_1       |   at org.jitsi.utils.concurrent.RecurringRunnableExecutor$1.run(RecurringRunnableExecutor.java:328)

Looks like ddou didn't really disable STUN for the JVB. Maybe you forgot to wipe the config volume?

Run the jitsi app on Android, and access/create a room from the public network.

It connects correctly, but no video for other participants (video is activated of course).

Not having any issues with that. My configuration currently looks like this:

DOCKER_HOST_ADDRESS=46.4....
#JVB_STUN_SERVERS=stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
JVB_PORT=14443
...
# JVB_ENABLE_APIS=xmmp,rest
...
DISABLE_HTTPS=1

So - public IP of docker host in DOCKER_HOST_ADDRESS, disable STUN, change JVB_PORT (because 10000 is taken by ndmp), disable JVB_ENABLE_APIS and disable HTTPS (because running behind an apache as proxy for multiple dockers). I also tried not setting DOCKER_HOST_ADDRESS and enabling STUN again - everything works for two participants then, but from the third on no video is working any more, which makes sense, since for two persons the P2P kicks in.
Currently playing around with SIP integration, but hitting a roadblock probably due to our sudo usage and file access rights in the config folder.

Maybe you forgot to wipe the config volume?

Regarding that: is it somehow possible to avoid wiping the prosody user accounts with that? Probably needs a new volume in the docker file

@saghul Okay, with git as of today, we're getting somewhere. I'm on the unstable build now, and beg my pardon for being such a tease, please!

Maybe you forgot to wipe the config volume?

My build script is pretty rigorous in this regard. Unlike the Makefile, I stop every component, remove stopped and anonymous containers, remove any unused network, etc.. Still unfinished, but usable already. How would you perform a sane restart? Just stop && start? Since I'm fiddling with the config all the time, build is the most widely used option here..

In order to behave for more than two participants, I have to apply @albe's trick: use the public IP address for DOCKER_HOST_ADDRESS, contrary to what you suggested. This is sub optimal for my case (and others I'm inclined in), because it changes every now and than (I don't have a static IP address).

@albe: Thanks a lot for elaborating on your setup. Yes, I can confirm, that any attempt to use STUN failed so far. I have some code ready to apply patches to /config/sip-communicator.properties, as documented in the manual-install, but disabled it for now to keep as close as possible to upstream.

JIGASI behaves fine here. I'm lucky, since I control the other side of the game as well (asterisk). :wink: :

[email protected]
JIGASI_SIP_PASSWORD=whatever
JIGASI_SIP_SERVER=192.168.2.2
JIGASI_SIP_PORT=15060
JIGASI_SIP_TRANSPORT=UDP
JIGASI_PORT_MIN=20000
JIGASI_PORT_MAX=20045
#JIGASI_ENABLE_SDES_SRTP=1
JIGASI_SIP_KEEP_ALIVE_METHOD=OPTIONS
JIGASI_HEALTH_CHECK_SIP_URI=keepalive
JIGASI_HEALTH_CHECK_INTERVAL=300000

I've disabled SRTP, since my asterisk as well as my provider isn't using it so far :disappointed:

I am facing this same problem mentiond here when a second user connects.
On the client side I get

Logger.js:154 2020-05-06T17:22:04.574Z [conference.js] <Q._onConferenceFailed>:  CONFERENCE FAILED: conference.videobridgeNotAvailable

In the jicofo log I have this

Jicofo 2020-05-06 19:22:04.612 INFO: [69] org.jitsi.jicofo.xmpp.FocusComponent.handleConferenceIq().401 Focus request for room: [email protected]
Jicofo 2020-05-06 19:22:04.779 INFO: [89] org.jitsi.jicofo.ChatRoomRoleAndPresence.log() Chat room event ChatRoomMemberPresenceChangeEvent[type=MemberJoined sourceRoom=org.jitsi.impl.protocol.xmpp.ChatRoomImpl@55afa7c4 member=ChatMember[[email protected]/37843575, jid: null]@1912504280]
Jicofo 2020-05-06 19:22:04.779 INFO: [89] org.jitsi.jicofo.JitsiMeetConferenceImpl.log() Member [email protected]/37843575 joined.
Jicofo 2020-05-06 19:22:04.780 WARNING: [89] org.jitsi.jicofo.bridge.BridgeSelectionStrategy.log() Failed to select initial bridge for participantRegion=null
Jicofo 2020-05-06 19:22:04.780 SEVERE: [89] org.jitsi.jicofo.JitsiMeetConferenceImpl.log() Can not invite participant -- no bridge available.
Jicofo 2020-05-06 19:22:04.780 WARNING: [89] org.jitsi.jicofo.bridge.BridgeSelectionStrategy.log() Failed to select initial bridge for participantRegion=null
Jicofo 2020-05-06 19:22:04.781 SEVERE: [89] org.jitsi.jicofo.JitsiMeetConferenceImpl.log() Can not invite participant -- no bridge available.
Jicofo 2020-05-06 19:22:05.079 INFO: [89] org.jitsi.jicofo.ChatRoomRoleAndPresence.log() Chat room event ChatRoomMemberPresenceChangeEvent[type=MemberLeft sourceRoom=org.jitsi.impl.protocol.xmpp.ChatRoomImpl@55afa7c4 member=ChatMember[[email protected]/a8fa1092, jid: [email protected]/xcO5dqRV]@279782165]
Jicofo 2020-05-06 19:22:05.080 INFO: [89] org.jitsi.jicofo.ChatRoomRoleAndPresence.log() Owner has left the room !

And following in the jvb log

INFO: create_conf, id=14f9f4d31060cc68 gid=null logging=false
May 06, 2020 7:22:36 PM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0.011S. Sticky failure: false
May 06, 2020 7:22:46 PM org.jitsi.utils.logging2.LoggerImpl log
INFO: Running expire()
May 06, 2020 7:22:46 PM org.jitsi.utils.logging2.LoggerImpl log
INFO: create_conf, id=6179486ed6183c24 gid=null logging=false
May 06, 2020 7:22:46 PM org.jitsi.utils.logging2.LoggerImpl log
INFO: Performed a successful health check in PT0.008S. Sticky failure: false

Instead of docker I am using podman and makes no difference whether to configure DOCKER_HOST_ADDRESS or not.

And there is also no difference when the containers use the same network stack or each one has its own.

Currently I am running out of ideas,

And during creation of the jicofo and jvb image I was requested to enter a host name

Configuring jicofo
------------------

The jicofo package needs the DNS hostname of your instance.

Hostname:

Here I tried the hostname where the containers are running on and also the ip address from the container (jvb, jicofo) itself, seems to be no difference :-(

It always ended in the result that it is not possible that a second user can join the meeting :-(

Please try Ddocker-Compose. That's what this setup supports, and what we can help you with. If you use some other tools which we don't support we cannot really help you.

Also, if you search through the open issues you'll see more work seems to be required to support podman.

@saghul I looked at other posts regarding podman here.
Just as an idea, what about providing my adapted files as a podman example like that for kubernetes ?

To solve this issue with podman I could imagine that it would be helpful to know the communication between the components (e.g. jicofo --> prosody via xmpp.jitsi.meet:5280), because what I understood from this error message is, that tje jicofo component does not find/access the jvb component ?

Do you know if there is some kind of documentation available ?

Was this page helpful?
0 / 5 - 0 ratings