jitsi / jitsi-meet

Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
https://jitsi.org/meet
Apache License 2.0
22.88k stars 6.69k forks source link

[Resolved] : Prosody configuration with new jitsi packages #6406

Closed electro575 closed 4 years ago

electro575 commented 4 years ago

Hi all,

OS : Debian buster

I have upgrade my jitsi-meet, jicofo and jitsi-videobridge packages on my debian buster.

I can connect jitsi-meet app to a room but i'm always alone with few device connect on the same room ! No video and no sound.

Maybe i suppose it's my prosody configuration file which is not good written.

I'm using apache2 and so i'm not able to install jitsi-meet-turn too.

Can you check my configuration ? Thanks



PROSODY


/etc/prosody/prosody.cfg.lua

-- a custom prosody config focused on high security and ease of use across (mobile) clients
-- provided to you by the homebrewserver.club
-- the original config file (prosody.cfg.lua.original) will have more information

-- Besoin du path ci-dessous ->  module communautaire bookmark
plugin_paths = {"/opt/prosody-modules","/usr/share/jitsi-meet/prosody-plugins/"} -- non-standard plugin path so we can keep them up to date with mercurial

admins = {"myuser@xmpp.domain.com","focus@auth.jitsi.domain.com","jvb@auth.jitsi.domain.com"} --JITSI "focus@auth.jitsi.domain.com"

modules_enabled = {

                -- Generally required
                "roster"; -- Allow users to have a roster. Recommended ;)
                "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in.
                "tls"; -- Add support for secure TLS on c2s/s2s connections
                "dialback"; -- s2s dialback support
                "disco"; -- Service discovery

                -- Not essential, but recommended
                "private"; -- Private XML storage (for room bookmarks, etc.)
                "vcard4"; -- User Profiles (stored in PEP)
                "vcard_legacy"; -- Conversion between legacy vCard and PEP Avatar, vcard
                "vjud"; -- Users can search other Users

                -- Nice to have
                "version"; -- Replies to server version requests
                "uptime"; -- Report how long server has been running
                "time"; -- Let others know the time here on this server
                "ping"; -- Replies to XMPP pings with pongs
                "register"; --Allows clients to register an account on your server
                "pep"; -- Enables users to publish their mood, activity, playing music and more

                -- Data sur disque pluôt qu'en mémoire
                "pubsub"; --

                -- Admin interfaces
                "adhoc"; -- Commands Adhoc
                "admin_adhoc"; -- Allows administration via an XMPP client that supports ad-hoc commands
                "admin_telnet"; -- Opens telnet console interface on localhost port 5582
                "announce"; -- Send announcement to all online users

                -- HTTP modules
                "bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"
                "http_files"; -- Serve static files from a directory over HTTP
        --"http_upload"; -- Enable on bottom file       Share files in MUCs
        "http_upload_external"; -- Share more than 10MB=10MO for 100MB=100MO

                -- Other specific functionality
                "posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
                "groups"; -- Shared roster support
                "announce"; -- Send announcement to all online users
                "welcome"; -- Welcome users who register accounts
                "watchregistrations"; -- Alert admins of registrations
                "motd"; -- Send a message to users when they log in
                "legacyauth"; -- Legacy authentication. Only used by some old clients and bots.

                --EXTERNAL MODULES
                "carbons"; -- XEP-0280: Message Carbons, synchronize messages accross devices
                "smacks"; -- XEP-0198: Stream Management, keep chatting even when the network drops for a few seconds
                "mam"; -- XEP-0313: Message Archive Management, allows to retrieve chat history from server
                "csi_simple"; -- XEP-0352: Client State Indication

                "blocklist"; -- XEP-0191  blocking of users
                "bookmarks"; -- Synchronize currently joined groupchat between different clients.
                "cloud_notify"; -- Support for XEP-0357 Push Notifications for compatibility with ChatSecure/iOS.
                -- iOS typically end the connection when an app runs in the background and requires use of Apple's Push servers to wake up and receive a message. Enabling this module allows your server to do that for your contacts on iOS.
                -- However we leave it commented out as it is another example of vertically integrated cloud platforms at odds with federation, with all the meta-data-based surveillance consequences that that might have.
                "server_contact_info"; --add contact info in the case of issues with the server

        -- jitsi
        "smacks";
        "carbons";
        "mam";
        "lastactivity";
        "offline";
        "pubsub";
        "adhoc";
        "websocket";
        "http_altconnect";
        "e2e_policy";
                };

-----------------------------
----- CLIENT TO SERVER ------
-----------------------------

c2s_ports = { 5222 }
c2s_interfaces = { "*", "::1" } -- Listen only on these interfaces
c2s_require_encryption = false -- Force clients to use encrypted connections
--allow_unencrypted_plain_auth = false;

-----------------------------
----- SERVER TO SERVER ------
-----------------------------

s2s_ports = { 5269 }
s2s_interfaces = { "*", "::1" } -- Listen only on these interfaces
s2s_require_encryption = true --default ???
s2s_secure_auth = false --default false

-----------------------------
--- CONFIGURATION DATABASE --
-----------------------------

default_storage = "internal" --NO SQL FILE, files /var/lib/prosody

        cross_domain_bosh = true;
        component_ports = { 5347 }

-----------------------------
-------- VIRTUALHOST --------
-----------------------------

VirtualHost "localhost"
        enabled = true

        modules_enable = {
        --"admin_web";
        }

-----------------------------------------------------
-------------- JITSI CONFIGURATION ------------------
-----------------------------------------------------

-- domain mapper options, must at least have domain base set to use the mapper
--muc_mapper_domain_base = "jitsi.domain.com";

--cross_domain_bosh = false;
--consider_bosh_secure = true;

VirtualHost "jitsi.domain.com"
        -- enabled = false -- Remove this line to enable this host
        authentication = "anonymous"
        -- Properties below are modified by jitsi-meet-tokens package config
        -- and authentication above is switched to "token"
        --app_id="example_app_id"
        --app_secret="example_app_secret"

        ssl = {
                key = "/etc/prosody/certs/jitsi.domain.com.key";
                certificate = "/etc/prosody/certs/jitsi.domain.com.crt";
        }
        speakerstats_component = "speakerstats.jitsi.domain.com"
        conference_duration_component = "conferenceduration.jitsi.domain.com"
        -- we need bosh

    --turncredentials_host = "turn.domain.com"
    --turncredentials_secret = "__turnSecret__";
    --turncredentials_port = 3478;
    --turncredentials_ttl = 86400;
    turncredentials = {
            --{ type = "stun", host = "jitsi.domain.com", port = 4446 },
            --{ type = "turn", host = "jitsi.domain.com", port = 4446, transport = "udp"},
            { type = "turns", host = "meet-jit-si-turnrelay.jitsi.net", port = 443, transport = "tcp" }
    };

        modules_enabled = {
            "bosh";
            "pubsub";
            "ping"; -- Enable mod_ping
            "speakerstats";
            "turncredentials";
            "conference_duration";
        }
        c2s_require_encryption = false

Component "conference.jitsi.domain.com" "muc"
    storage = "memory"
    modules_enabled = {
        "muc_meeting_id";
        "muc_domain_mapper";
        -- "token_verification";
    }
    admins = { "focus@auth.jitsi.domain.com" }
    muc_room_locking = false
    muc_room_default_public_jids = true

-- internal muc component
Component "internal.auth.jitsi.domain.com" "muc"
    storage = "memory"
    modules_enabled = {
      "ping";
    }
    admins = { "focus@auth.jitsi.domain.com", "jvb@auth.jitsi.domain.com" }
    muc_room_locking = false
    muc_room_default_public_jids = true

VirtualHost "auth.jitsi.domain.com"
    authentication = "internal_plain"

VirtualHost "guest.jitsi.domain.com"
    authentication = "anonymous"
    c2s_require_encryption = false

Component "focus.jitsi.domain.com"
    component_secret = "MY_SECRET_JICOFO"

Component "speakerstats.jitsi.domain.com" "speakerstats_component"
    muc_component = "conference.jitsi.domain.com"

Component "conferenceduration.jitsi.domain.com" "conference_duration_component"
    muc_component = "conference.jitsi.domain.com"

Component "jitsi-videobridge.jitsi.domain.com"
    component_secret = "MY_SECRET"

Include "conf.d/*.cfg.lua"


APACHE 2


/etc/apache2/sites-enabled/jitsi.domain.com.conf

<VirtualHost *:80>
    ServerName jitsi.domain.com
    Redirect permanent / https://jitsi.domain.com/
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</VirtualHost>

<VirtualHost *:443>

  ServerName jitsi.domain.com

  SSLProtocol TLSv1 TLSv1.1 TLSv1.2
  SSLEngine on
  SSLProxyEngine on
  SSLCertificateFile /var/lib/dehydrated/certs/jitsi.domain.com/cert.pem
  SSLCertificateKeyFile /var/lib/dehydrated/certs/jitsi.domain.com/privkey.pem
  SSLCertificateKeyFile /var/lib/dehydrated/certs/jitsi.domain.com/chain.pem
  SSLCipherSuite "EECDH+ECDSA+AESGCM:EECDH+aRSA+AESGCM:EECDH+ECDSA+SHA256:EECDH+aRSA+SHA256:EECDH+ECDSA+SHA384:EECDH+ECDSA+SHA256:EECDH+aRSA+SHA384:EDH+aRSA+AESGCM:EDH+aRSA+SHA256:EDH+aRSA:EECDH:!aNULL:!eNULL:!MEDIUM:!LOW:!3DES:!MD5:!EXP:!PSK:!SRP:!DSS:!RC4:!SEED"
  SSLHonorCipherOrder on
  Header set Strict-Transport-Security "max-age=31536000"

  DocumentRoot "/usr/share/jitsi-meet"
  <Directory "/usr/share/jitsi-meet">
    Options Indexes MultiViews Includes FollowSymLinks
    AddOutputFilter Includes html
    AllowOverride All
    Order allow,deny
    Allow from all
  </Directory>

  ErrorDocument 404 /static/404.html

  Alias "/config.js" "/etc/jitsi/meet/jitsi.domain.com-config.js"
  <Location /config.js>
    Require all granted
  </Location>

  Alias "/external_api.js" "/usr/share/jitsi-meet/libs/external_api.min.js"
  <Location /external_api.js>
    Require all granted
  </Location>

  ProxyPreserveHost on
  ProxyPass /http-bind http://localhost:5280/http-bind/
  ProxyPassReverse /http-bind http://localhost:5280/http-bind/

  RewriteEngine on
  RewriteRule ^/([a-zA-Z0-9]+)$ /index.html

</VirtualHost>


JITSI-MEET


/etc/jitsi/meet/jitsi.domain.com-config.js

var config = {
    // Connection

    hosts: {
        // XMPP domain.
        domain: 'jitsi.domain.com',

        // When using authentication, domain for guest users.
        anonymousdomain: 'guest.jitsi.domain.com',

        // Domain for authenticated users. Defaults to <domain>.
        // authdomain: 'jitsi.domain.com',

        // Jirecon recording component domain.
        // jirecon: 'jirecon.jitsi.domain.com',

        // Call control component (Jigasi).
        // call_control: 'callcontrol.jitsi.domain.com',

        // Focus component domain. Defaults to focus.<domain>.
        focus: 'focus.jitsi.domain.com',

        // XMPP MUC domain. FIXME: use XEP-0030 to discover it.
        muc: 'conference.jitsi.domain.com'
    },

    // BOSH URL. FIXME: use XEP-0156 to discover it.
    bosh: '//jitsi.domain.com/http-bind',

    // Websocket URL
    // websocket: 'wss://jitsi.domain.com/xmpp-websocket',

    // The name of client node advertised in XEP-0115 'c' stanza
    clientNode: 'http://jitsi.org/jitsimeet',

    // The real JID of focus participant - can be overridden here
    // focusUserJid: 'focus@auth.jitsi.domain.com',

p2p: {
        enabled: true,

        // useStunTurn: true,

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

            //{ urls: 'stun:turn.domain.com:3478' },
            { urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' }
        ],


JICOFO


/etc/jitsi/jicofo/config

JICOFO_HOST=localhost
JICOFO_HOSTNAME=jitsi.domain.com
JICOFO_SECRET=SECRET_JICOFO
JICOFO_PORT=5347

JICOFO_AUTH_DOMAIN=auth.jitsi.domain.com
JICOFO_AUTH_USER=focus
JICOFO_AUTH_PASSWORD=MY_SECRET

JICOFO_OPTS=""
JAVA_SYS_PROPS="-Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/etc/jitsi -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=jicofo -Dnet.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/jitsi -Djava.util.logging.config.file=/etc/jitsi/jicofo/logging.properties"

/etc/jitsi/jicofo/sip-communicator.properties

org.jitsi.jicofo.BRIDGE_MUC=jvbbrewery@internal.auth.jitsi.domain.com
org.jitsi.jicofo.ALWAYS_TRUST_MODE_ENABLED=true
# org.jitsi.jicofo.auth.URL=XMPP:jitsi.domain.com


JITSI-VIDEOBRIDGE2


/etc/jitsi/videobridge/config

JVB_HOSTNAME=jitsi.domain.com
JVB_HOST=
JVB_PORT=5347
JVB_SECRET=MY_SECRET_X

JVB_OPTS="--apis=,"
JAVA_SYS_PROPS="-Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=/etc/jitsi -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=videobridge -Dnet.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/jitsi -Djava.util.logging.config.file=/etc/jitsi/videobridge/logging.properties"

/etc/jitsi/videobridge/sip-communicator.properties

org.ice4j.ice.harvest.DISABLE_AWS_HARVESTER=true
org.ice4j.ice.harvest.STUN_MAPPING_HARVESTER_ADDRESSES=meet-jit-si-turnrelay.jitsi.net:443
org.jitsi.videobridge.ENABLE_STATISTICS=true
org.jitsi.videobridge.STATISTICS_TRANSPORT=muc
org.jitsi.videobridge.xmpp.user.shard.HOSTNAME=localhost
org.jitsi.videobridge.xmpp.user.shard.DOMAIN=auth.jitsi.domain.com
org.jitsi.videobridge.xmpp.user.shard.USERNAME=jvb
org.jitsi.videobridge.xmpp.user.shard.PASSWORD=MY_SECRET_X
org.jitsi.videobridge.xmpp.user.shard.MUC_JIDS=jvbbrewery@internal.auth.jitsi.domain.com
org.jitsi.videobridge.xmpp.user.shard.MUC_NICKNAME=51c25d72-005e-426a-a16e-c06cb969c6b7
org.jitsi.videobridge.xmpp.user.shard.DISABLE_CERTIFICATE_VERIFICATION=true
org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=10.0.1.68
org.ice4j.ice.harvest.NAT_HARVESTER_PUBLIC_ADDRESS=XX.XX.XX.XX

#org.jitsi.videobridge.AUTHORIZED_SOURCE_REGEXP=focus@auth.meet.jitsi/.*
org.jitsi.videobridge.AUTHORIZED_SOURCE_REGEXP=jvbbrewery@internal.auth.jitsi.domain.com/focus*
org.jitsi.videobridge.SINGLE_PORT_HARVESTER_PORT=10000
org.jitsi.videobridge.DISABLE_TCP_HARVESTER=true

org.jitsi.videobridge.ENABLE_STATISTICS=true
org.jitsi.videobridge.STATISTICS_TRANSPORT=muc
org.jitsi.videobridge.STATISTICS_INTERVAL=5000
damencho commented 4 years ago

Please use the community forum when you have problems or questions before opening new issues.

Maybe share the js console logs from the browser, so we can identify what is the problem.

electro575 commented 4 years ago

JVB LOG

2020-04-27 16:36:03.318 INFOS: [1] NewConfig$1.invoke#88: Loaded NewConfig with origin: merge of system properties,system properties,reference.conf @ jar:file:/usr/share/jitsi-videobridge/jitsi-videobridge.jar!/reference.conf: 1,reference.conf @ jar:file:/usr/share/jitsi-videobridge/lib/jitsi-media-transform-1.0-151-gd47656a.jar!/reference.conf: 1
2020-04-27 16:36:03.322 INFOS: [1] LegacyConfigFileLoader$Companion.load#40: Attempting to load legacy config file at path /etc/jitsi, videobridge, sip-communicator.properties
2020-04-27 16:36:03.326 INFOS: [1] LegacyConfigFileLoader$Companion.load#40: Attempting to load legacy config file at path /etc/jitsi, videobridge, sip-communicator.properties
2020-04-27 16:36:03.328 INFOS: [1] JitsiConfig$Companion.reload#40: Reloading.
2020-04-27 16:36:03.346 INFOS: [1] NewConfig$1.invoke#88: Loaded NewConfig with origin: merge of system properties,system properties,reference.conf @ jar:file:/usr/share/jitsi-videobridge/jitsi-videobridge.jar!/reference.conf: 1,reference.conf @ jar:file:/usr/share/jitsi-videobridge/lib/jitsi-media-transform-1.0-151-gd47656a.jar!/reference.conf: 1
2020-04-27 16:36:03.346 INFOS: [1] LegacyConfigFileLoader$Companion.load#40: Attempting to load legacy config file at path /etc/jitsi, videobridge, sip-communicator.properties
2020-04-27 16:36:03.347 INFOS: [1] LegacyConfigFileLoader$Companion.load#40: Attempting to load legacy config file at path /etc/jitsi, videobridge, sip-communicator.properties
2020-04-27 16:36:03.411 INFOS: [12] ConfigurationActivator.start#45: Registered the LegacyConfigurationServiceShim in OSGi.
2020-04-27 16:36:03.424 INFOS: [12] AbstractVersionActivator.start#91: VersionService registered: JVB 2.1.183-gdbddd169
2020-04-27 16:36:03.437 INFOS: [12] AbstractJettyBundleActivator.start#613: Not starting the Jetty service for org.jitsi.videobridge.rest.RESTBundleActivator(port=8080)
2020-04-27 16:36:03.476 INFOS: [12] AbstractJettyBundleActivator.start#613: Not starting the Jetty service for org.jitsi.videobridge.websocket.WebSocketBundleActivator(port=-1)
2020-04-27 16:36:03.515 INFOS: [12] UlimitCheck.printUlimits#115: Running with open files limit 65000 (hard 65000), thread limit 65000 (hard 65000).
2020-04-27 16:36:03.517 INFOS: [12] VideobridgeExpireThread.start#92: Starting with 60 second interval.
2020-04-27 16:36:03.520 AVERTISSEMENT: [12] Videobridge.start#909: No authorized source regexp configured. Will accept requests from any source.
2020-04-27 16:36:03.643 INFOS: [12] JitsiConfig$Companion.reload#40: Reloading.
2020-04-27 16:36:03.658 INFOS: [12] NewConfig$1.invoke#88: Loaded NewConfig with origin: merge of system properties,system properties,reference.conf @ jar:file:/usr/share/jitsi-videobridge/jitsi-videobridge.jar!/reference.conf: 1,reference.conf @ jar:file:/usr/share/jitsi-videobridge/lib/jitsi-media-transform-1.0-151-gd47656a.jar!/reference.conf: 1
2020-04-27 16:36:03.658 INFOS: [12] LegacyConfigFileLoader$Companion.load#40: Attempting to load legacy config file at path /etc/jitsi, videobridge, sip-communicator.properties
2020-04-27 16:36:03.659 INFOS: [12] LegacyConfigFileLoader$Companion.load#40: Attempting to load legacy config file at path /etc/jitsi, videobridge, sip-communicator.properties
2020-04-27 16:36:03.688 INFOS: [12] AbstractHealthCheckService.start#96: Started with interval=10000, timeout=PT30S, maxDuration=PT3S, stickyFailures=false.
2020-04-27 16:36:03.717 INFOS: [12] OctoRelayService.start#62: Octo relay is disabled.
2020-04-27 16:36:03.729 AVERTISSEMENT: [21] MucClient.createXMPPTCPConnectionConfiguration#115: Disabling certificate verification!
2020-04-27 16:36:04.074 INFOS: [21] [hostname=localhost id=shard] MucClient$1.connected#266: Connected.
2020-04-27 16:36:04.075 INFOS: [21] [hostname=localhost id=shard] MucClient.lambda$getConnectAndLoginCallable$7#648: Logging in.
2020-04-27 16:36:04.118 INFOS: [26] org.ice4j.ice.harvest.StunMappingCandidateHarvester.discover: Discovered public address 45.13.104.170:33877/udp from STUN server 54.188.194.66:443/udp using local address 10.1.45.17:0/udp
2020-04-27 16:36:04.118 INFOS: [19] org.ice4j.ice.harvest.MappingCandidateHarvesters.maybeAdd: Discarding a mapping harvester with duplicate addresses: org.ice4j.ice.harvest.StunMappingCandidateHarvester, face=/10.1.45.17, mask=/45.13.104.170. Kept: org.ice4j.ice.harvest.MappingCandidateHarvester, face=/10.1.45.17, mask=/45.13.104.170
2020-04-27 16:36:04.118 INFOS: [19] org.ice4j.ice.harvest.MappingCandidateHarvesters.initialize: Using org.ice4j.ice.harvest.MappingCandidateHarvester, face=/10.1.45.17, mask=/45.13.104.170
2020-04-27 16:36:04.118 INFOS: [19] org.ice4j.ice.harvest.MappingCandidateHarvesters.initialize: Initialized mapping harvesters (delay=439ms).  stunDiscoveryFailed=false
2020-04-27 16:36:04.198 INFOS: [21] [hostname=localhost id=shard] MucClient$MucWrapper.join#751: Joined MUC: jvbbrewery@internal.auth.jitsi.domain.com
2020-04-27 16:36:13.706 INFOS: [20] Videobridge.createConference#319: create_conf, id=52bf18af335d7896 gid=null logging=false
2020-04-27 16:36:13.717 INFOS: [20] TaskPools.<clinit>#81: TaskPools detected 4 processors, creating the CPU pool with that many threads
2020-04-27 16:36:13.821 INFOS: [20] org.ice4j.ice.harvest.AbstractUdpListener.<init>: Initialized AbstractUdpListener with address [2a0b:cbc0:1116:1:1ad6:c7ff:fe06:18a0]:10000/udp. Receive buffer size 10485760 (asked for 10485760)
2020-04-27 16:36:13.822 INFOS: [20] org.ice4j.ice.harvest.SinglePortUdpHarvester.<init>: Initialized SinglePortUdpHarvester with address [2a0b:cbc0:1116:1:1ad6:c7ff:fe06:18a0]:10000/udp
2020-04-27 16:36:13.822 INFOS: [20] org.ice4j.ice.harvest.AbstractUdpListener.<init>: Initialized AbstractUdpListener with address 10.1.45.17:10000/udp. Receive buffer size 10485760 (asked for 10485760)
2020-04-27 16:36:13.822 INFOS: [20] org.ice4j.ice.harvest.SinglePortUdpHarvester.<init>: Initialized SinglePortUdpHarvester with address 10.1.45.17:10000/udp
SCTP JNI load: Linux OS detected
SCTP lib loaded
=====>: org_jitsi_modified_sctp4j_SctpJni.c calling init
=====>: org_jitsi_modified_sctp4j_SctpJni.c about to set SCTP_DEBUG_ALL
2020-04-27 16:36:14.718 INFOS: [20] AbstractHealthCheckService.run#171: Performed a successful health check in PT1.031S. Sticky failure: false
2020-04-27 16:36:23.688 INFOS: [20] Videobridge.createConference#319: create_conf, id=2045b2d7f899dfa1 gid=null logging=false
2020-04-27 16:36:23.704 INFOS: [20] AbstractHealthCheckService.run#171: Performed a successful health check in PT0.016S. Sticky failure: false
2020-04-27 16:36:33.689 INFOS: [20] Videobridge.createConference#319: create_conf, id=363ebbdc92a5c27a gid=null logging=false
2020-04-27 16:36:33.703 INFOS: [20] AbstractHealthCheckService.run#171: Performed a successful health check in PT0.015S. Sticky failure: false
2020-04-27 16:36:43.689 INFOS: [20] Videobridge.createConference#319: create_conf, id=f5dbdf3ed9453bdd gid=null logging=false
2020-04-27 16:36:43.703 INFOS: [20] AbstractHealthCheckService.run#171: Performed a successful health check in PT0.014S. Sticky failure: false
2020-04-27 16:36:53.690 INFOS: [20] Videobridge.createConference#319: create_conf, id=b1eb1e49d3e6bcb9 gid=null logging=false
2020-04-27 16:36:53.704 INFOS: [20] AbstractHealthCheckService.run#171: Performed a successful health check in PT0.015S. Sticky failure: false
electro575 commented 4 years ago

JICOFO LOG, thank you a lot for your advice.

Jicofo 2020-04-27 16:36:03.183 INFOS: [11] org.jitsi.service.libjitsi.LibJitsi.log() Successfully started LibJitsi using as implementation: org.jitsi.impl.libjitsi.LibJitsiOSGiImpl
Jicofo 2020-04-27 16:36:03.205 INFOS: [11] impl.configuration.ConfigurationActivator.log() Using properties file configuration store.
Jicofo 2020-04-27 16:36:03.209 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() org.jitsi.jicofo.HOSTNAME=localhost
Jicofo 2020-04-27 16:36:03.209 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.runtime.name=OpenJDK Runtime Environment
Jicofo 2020-04-27 16:36:03.209 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() sun.boot.library.path=/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/jre/lib/amd64
Jicofo 2020-04-27 16:36:03.209 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.vm.version=25.232-b09
Jicofo 2020-04-27 16:36:03.209 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.vm.vendor=AdoptOpenJDK
Jicofo 2020-04-27 16:36:03.210 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.vendor.url=http://java.oracle.com/
Jicofo 2020-04-27 16:36:03.210 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() path.separator=:
Jicofo 2020-04-27 16:36:03.213 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.util.logging.config.file=/etc/jitsi/jicofo/logging.properties
Jicofo 2020-04-27 16:36:03.213 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.vm.name=OpenJDK 64-Bit Server VM
Jicofo 2020-04-27 16:36:03.214 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() file.encoding.pkg=sun.io
Jicofo 2020-04-27 16:36:03.214 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() user.country=FR
Jicofo 2020-04-27 16:36:03.214 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() sun.java.launcher=SUN_STANDARD
Jicofo 2020-04-27 16:36:03.214 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() sun.os.patch.level=unknown
Jicofo 2020-04-27 16:36:03.214 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() net.java.sip.communicator.service.media.DISABLE_AUDIO_SUPPORT=true
Jicofo 2020-04-27 16:36:03.214 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.vm.specification.name=Java Virtual Machine Specification
Jicofo 2020-04-27 16:36:03.215 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() user.dir=/usr/share/jicofo
Jicofo 2020-04-27 16:36:03.215 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() org.jitsi.jicofo.FOCUS_USER_PASSWORD=MY_SECRET
Jicofo 2020-04-27 16:36:03.215 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.runtime.version=1.8.0_232-b09
Jicofo 2020-04-27 16:36:03.215 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment
Jicofo 2020-04-27 16:36:03.215 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.endorsed.dirs=/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/jre/lib/endorsed
Jicofo 2020-04-27 16:36:03.216 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() os.arch=amd64
Jicofo 2020-04-27 16:36:03.216 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.io.tmpdir=/tmp
Jicofo 2020-04-27 16:36:03.216 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() line.separator=

Jicofo 2020-04-27 16:36:03.216 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.vm.specification.vendor=Oracle Corporation
Jicofo 2020-04-27 16:36:03.217 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() os.name=Linux
Jicofo 2020-04-27 16:36:03.217 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() sun.jnu.encoding=UTF-8
Jicofo 2020-04-27 16:36:03.217 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() net.java.sip.communicator.CONFIGURATION_FILE_IS_READ_ONLY=true
Jicofo 2020-04-27 16:36:03.217 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() org.jitsi.jicofo.FOCUS_USER_DOMAIN=auth.jitsi.domain.com
Jicofo 2020-04-27 16:36:03.217 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
Jicofo 2020-04-27 16:36:03.217 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.specification.name=Java Platform API Specification
Jicofo 2020-04-27 16:36:03.219 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.class.version=52.0
Jicofo 2020-04-27 16:36:03.220 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() org.jitsi.service.audionotifier.AudioNotifierService=org.jitsi.impl.neomedia.notify.AudioNotifierServiceImpl
Jicofo 2020-04-27 16:36:03.220 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() sun.management.compiler=HotSpot 64-Bit Tiered Compilers
Jicofo 2020-04-27 16:36:03.221 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() os.version=4.19.0-8-amd64
Jicofo 2020-04-27 16:36:03.221 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() user.home=/usr/share/jicofo
Jicofo 2020-04-27 16:36:03.222 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() user.timezone=Europe/Paris
Jicofo 2020-04-27 16:36:03.222 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.awt.printerjob=sun.print.PSPrinterJob
Jicofo 2020-04-27 16:36:03.223 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() org.jitsi.jicofo.FOCUS_USER_NAME=focus
Jicofo 2020-04-27 16:36:03.223 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() file.encoding=UTF-8
Jicofo 2020-04-27 16:36:03.223 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.specification.version=1.8
Jicofo 2020-04-27 16:36:03.223 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() net.java.sip.communicator.service.media.DISABLE_VIDEO_SUPPORT=true
Jicofo 2020-04-27 16:36:03.224 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() org.jitsi.jicofo.XMPP_DOMAIN=jitsi.domain.com
Jicofo 2020-04-27 16:36:03.224 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.class.path=/usr/share/jicofo/jicofo.jar:/usr/share/jicofo/lib/agafua-syslog-0.4.jar:/usr/share/jicofo/lib/annotations-15.0.jar:/usr/share/jicofo/lib/aopalliance-repackaged-2.6.1.jar:/usr/share/jicofo/lib/apiguardian-api-1.0.0.jar:/usr/share/jicofo/lib/argparse4j-0.8.1.jar:/usr/share/jicofo/lib/arrow-annotations-0.9.0.jar:/usr/share/jicofo/lib/arrow-core-data-0.9.0.jar:/usr/share/jicofo/lib/arrow-core-extensions-0.9.0.jar:/usr/share/jicofo/lib/arrow-typeclasses-0.9.0.jar:/usr/share/jicofo/lib/bccontrib-1.0.jar:/usr/share/jicofo/lib/bcpkix-jdk15on-1.54.jar:/usr/share/jicofo/lib/bcprov-jdk15on-1.54.jar:/usr/share/jicofo/lib/byte-buddy-1.9.10.jar:/usr/share/jicofo/lib/byte-buddy-agent-1.9.10.jar:/usr/share/jicofo/lib/cglib-nodep-2.2.jar:/usr/share/jicofo/lib/classgraph-4.8.1.jar:/usr/share/jicofo/lib/colormath-1.2.0.jar:/usr/share/jicofo/lib/commons-codec-1.6.jar:/usr/share/jicofo/lib/commons-io-2.6.jar:/usr/share/jicofo/lib/commons-lang3-3.1.jar:/usr/share/jicofo/lib/commons-logging-1.2.jar:/usr/share/jicofo/lib/concurrentlinkedhashmap-lru-1.0_jdk5.jar:/usr/share/jicofo/lib/config-1.3.4.jar:/usr/share/jicofo/lib/core-2.0.1.jar:/usr/share/jicofo/lib/diffutils-2.2.jar:/usr/share/jicofo/lib/dnsjava-2.1.7.jar:/usr/share/jicofo/lib/dom4j-1.6.1.jar:/usr/share/jicofo/lib/fmj-1.0-SNAPSHOT.jar:/usr/share/jicofo/lib/guava-15.0.jar:/usr/share/jicofo/lib/hk2-api-2.6.1.jar:/usr/share/jicofo/lib/hk2-locator-2.6.1.jar:/usr/share/jicofo/lib/hk2-utils-2.6.1.jar:/usr/share/jicofo/lib/httpclient-4.4.1.jar:/usr/share/jicofo/lib/httpcore-4.4.1.jar:/usr/share/jicofo/lib/ice4j-3.0-12-ge90c796.jar:/usr/share/jicofo/lib/jackson-annotations-2.10.1.jar:/usr/share/jicofo/lib/jackson-core-2.10.1.jar:/usr/share/jicofo/lib/jackson-databind-2.10.1.jar:/usr/share/jicofo/lib/jackson-module-jaxb-annotations-2.10.1.jar:/usr/share/jicofo/lib/jain-sip-ri-ossonly-1.2.98c7f8c-jitsi-oss1.jar:/usr/share/jicofo/lib/jakarta.activation-api-1.2.1.jar:/usr/share/jicofo/lib/jakarta.annotation-api-1.3.5.jar:/usr/share/jicofo/lib/jakarta.inject-2.6.1.jar:/usr/share/jicofo/lib/jakarta.validation-api-2.0.2.jar:/usr/share/jicofo/lib/jakarta.ws.rs-api-2.1.6.jar:/usr/share/jicofo/lib/jakarta.xml.bind-api-2.3.2.jar:/usr/share/jicofo/lib/java-dogstatsd-client-2.5.jar:/usr/share/jicofo/lib/java-sdp-nist-bridge-1.1.jar:/usr/share/jicofo/lib/javassist-3.22.0-CR2.jar:/usr/share/jicofo/lib/javax.servlet-api-3.1.0.jar:/usr/share/jicofo/lib/jbosh-0.9.2.jar:/usr/share/jicofo/lib/jcip-annotations-1.0.jar:/usr/share/jicofo/lib/jcl-core-2.8.jar:/usr/share/jicofo/lib/jersey-client-2.30.1.jar:/usr/share/jicofo/lib/jersey-common-2.30.1.jar:/usr/share/jicofo/lib/jersey-container-jetty-http-2.30.1.jar:/usr/share/jicofo/lib/jersey-container-servlet-2.30.1.jar:/usr/share/jicofo/lib/jersey-container-servlet-core-2.30.1.jar:/usr/share/jicofo/lib/jersey-entity-filtering-2.30.1.jar:/usr/share/jicofo/lib/jersey-hk2-2.30.1.jar:/usr/share/jicofo/lib/jersey-media-jaxb-2.30.1.jar:/usr/share/jicofo/lib/jersey-media-json-jackson-2.30.1.jar:/usr/share/jicofo/lib/jersey-server-2.30.1.jar:/usr/share/jicofo/lib/jetty-client-9.4.15.v20190215.jar:/usr/share/jicofo/lib/jetty-continuation-9.4.17.v20190418.jar:/usr/share/jicofo/lib/jetty-http-9.4.15.v20190215.jar:/usr/share/jicofo/lib/jetty-io-9.4.15.v20190215.jar:/usr/share/jicofo/lib/jetty-proxy-9.4.15.v20190215.jar:/usr/share/jicofo/lib/jetty-security-9.4.15.v20190215.jar:/usr/share/jicofo/lib/jetty-server-9.4.15.v20190215.jar:/usr/share/jicofo/lib/jetty-servlet-9.4.15.v20190215.jar:/usr/share/jicofo/lib/jetty-util-9.4.15.v20190215.jar:/usr/share/jicofo/lib/jetty-webapp-7.0.1.v20091125.jar:/usr/share/jicofo/lib/jetty-xml-7.0.1.v20091125.jar:/usr/share/jicofo/lib/jicoco-1.1-27-g9223c3d.jar:/usr/share/jicofo/lib/jicoco-kotlin-1.1-27-g9223c3d.jar:/usr/share/jicofo/lib/jicoco-test-kotlin-1.1-27-g9223c3d.jar:/usr/share/jicofo/lib/jitsi-android-osgi-1.0-SNAPSHOT.jar:/usr/share/jicofo/lib/jitsi-configuration-2.13.cb5485e.jar:/usr/share/jicofo/lib/jitsi-credentialsstorage-2.13.cb5485e.jar:/usr/share/jicofo/lib/jitsi-dnsservice-2.13.cb5485e.jar:/usr/share/jicofo/lib/jitsi-netaddr-2.13.cb5485e.jar:/usr/share/jicofo/lib/jitsi-protocol-2.13.cb5485e.jar:/usr/share/jicofo/lib/jitsi-protocol-jabber-2.13.cb5485e.jar:/usr/share/jicofo/lib/jitsi-protocol-media-2.13.cb5485e.jar:/usr/share/jicofo/lib/jitsi-util-2.13.cb5485e.jar:/usr/share/jicofo/lib/jitsi-utils-1.0-33-g2ed4090.jar:/usr/share/jicofo/lib/jitsi-utils-kotlin-1.0-40-g3244250.jar:/usr/share/jicofo/lib/jitsi-xmpp-extensions-1.0-6-g009420d.jar:/usr/share/jicofo/lib/jna-4.1.0.jar:/usr/share/jicofo/lib/jnsapi-0.0.3-jitsi-smack4.2-3.jar:/usr/share/jicofo/lib/json-simple-1.1.1.jar:/usr/share/jicofo/lib/junit-jupiter-api-5.5.1.jar:/usr/share/jicofo/lib/junit-platform-commons-1.4.0.jar:/usr/share/jicofo/lib/junit-platform-engine-1.4.0.jar:/usr/share/jicofo/lib/junit-platform-launcher-1.4.0.jar:/usr/share/jicofo/lib/junit-platform-suite-api-1.4.0.jar:/usr/share/jicofo/lib/jxmpp-core-0.6.2.jar:/usr/share/jicofo/lib/jxmpp-jid-0.6.2.jar:/usr/share/jicofo/lib/jxmpp-util-cache-0.6.2.jar:/usr/share/jicofo/lib/kindedj-1.1.0.jar:/usr/share/jicofo/lib/kotlin-reflect-1.3.61.jar:/usr/share/jicofo/lib/kotlin-stdlib-1.3.61.jar:/usr/share/jicofo/lib/kotlin-stdlib-common-1.3.61.jar:/usr/share/jicofo/lib/kotlin-stdlib-jdk7-1.3.61.jar:/usr/share/jicofo/lib/kotlin-stdlib-jdk8-1.3.61.jar:/usr/share/jicofo/lib/kotlintest-assertions-3.4.2.jar:/usr/share/jicofo/lib/kotlintest-core-3.4.2.jar:/usr/share/jicofo/lib/kotlintest-extensions-3.4.2.jar:/usr/share/jicofo/lib/kotlintest-runner-console-3.4.2.jar:/usr/share/jicofo/lib/kotlintest-runner-junit5-3.4.2.jar:/usr/share/jicofo/lib/kotlintest-runner-jvm-3.4.2.jar:/usr/share/jicofo/lib/kotlinx-coroutines-core-1.1.1.jar:/usr/share/jicofo/lib/kotlinx-coroutines-core-common-1.1.1.jar:/usr/share/jicofo/lib/libidn-1.15.jar:/usr/share/jicofo/lib/libjitsi-1.0-0-gb3296cf.jar:/usr/share/jicofo/lib/mockk-1.9.1.jar:/usr/share/jicofo/lib/mockk-agent-api-1.9.1.jar:/usr/share/jicofo/lib/mockk-agent-common-1.9.1.jar:/usr/share/jicofo/lib/mockk-agent-jvm-1.9.1.jar:/usr/share/jicofo/lib/mockk-common-1.9.1.jar:/usr/share/jicofo/lib/mockk-dsl-1.9.1.jar:/usr/share/jicofo/lib/mockk-dsl-jvm-1.9.1.jar:/usr/share/jicofo/lib/mordant-1.2.1.jar:/usr/share/jicofo/lib/object-cloner-0.1.jar:/usr/share/jicofo/lib/objenesis-2.6.jar:/usr/share/jicofo/lib/opentest4j-1.1.1.jar:/usr/share/jicofo/lib/orange-extensions-1.3.0.jar:/usr/share/jicofo/lib/org.apache.felix.framework-4.4.0.jar:/usr/share/jicofo/lib/org.apache.felix.main-4.4.0.jar:/usr/share/jicofo/lib/org.eclipse.jgit-4.4.1.201607150455-r.jar:/usr/share/jicofo/lib/org.osgi.core-4.3.1.jar:/usr/share/jicofo/lib/osgi-resource-locator-1.0.3.jar:/usr/share/jicofo/lib/reflections-0.9.11.jar:/usr/share/jicofo/lib/sdes4j-1.1.3.jar:/usr/share/jicofo/lib/sdp-api-1.0.jar:/usr/share/jicofo/lib/slf4j-api-1.7.26.jar:/usr/share/jicofo/lib/slf4j-jdk14-1.7.26.jar:/usr/share/jicofo/lib/smack-bosh-4.2.4-47d17fc.jar:/usr/share/jicofo/lib/smack-core-4.2.4-47d17fc.jar:/usr/share/jicofo/lib/smack-debug-4.2.4-47d17fc.jar:/usr/share/jicofo/lib/smack-experimental-4.2.4-47d17fc.jar:/usr/share/jicofo/lib/smack-extensions-4.2.4-47d17fc.jar:/usr/share/jicofo/lib/smack-im-4.2.4-47d17fc.jar:/usr/share/jicofo/lib/smack-java7-4.2.4-47d17fc.jar:/usr/share/jicofo/lib/smack-legacy-4.2.4-47d17fc.jar:/usr/share/jicofo/lib/smack-resolver-javax-4.2.4-47d17fc.jar:/usr/share/jicofo/lib/smack-sasl-javax-4.2.4-47d17fc.jar:/usr/share/jicofo/lib/smack-tcp-4.2.4-47d17fc.jar:/usr/share/jicofo/lib/tinder-1.3.0.jar:/usr/share/jicofo/lib/univocity-parsers-2.8.1.jar:/usr/share/jicofo/lib/weupnp-0.1.4.jar:/usr/share/jicofo/lib/xml-apis-1.0.b2.jar:/usr/share/jicofo/lib/xmlpull-1.1.3.4a.jar:/usr/share/jicofo/lib/xpp3-1.1.4c.jar:/usr/share/jicofo/lib/zrtp4j-light-4.1.0-jitsi-1-SNAPSHOT.jar
Jicofo 2020-04-27 16:36:03.225 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() user.name=jicofo
Jicofo 2020-04-27 16:36:03.225 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.vm.specification.version=1.8
Jicofo 2020-04-27 16:36:03.225 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() sun.java.command=org.jitsi.jicofo.Main --host=localhost --domain=jitsi.domain.com --port=5347 --secret=lAMYuil6DJ4PVIGE --user_name=focus --user_domain=auth.jitsi.domain.com --user_password=MY_SECRET
Jicofo 2020-04-27 16:36:03.225 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.home=/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/jre
Jicofo 2020-04-27 16:36:03.225 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() sun.arch.data.model=64
Jicofo 2020-04-27 16:36:03.226 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() user.language=fr
Jicofo 2020-04-27 16:36:03.226 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.specification.vendor=Oracle Corporation
Jicofo 2020-04-27 16:36:03.226 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() awt.toolkit=sun.awt.X11.XToolkit
Jicofo 2020-04-27 16:36:03.226 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.vm.info=mixed mode
Jicofo 2020-04-27 16:36:03.226 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.version=1.8.0_232
Jicofo 2020-04-27 16:36:03.226 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.ext.dirs=/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/jre/lib/ext:/usr/java/packages/lib/ext
Jicofo 2020-04-27 16:36:03.227 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() sun.boot.class.path=/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/jre/lib/resources.jar:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/jre/lib/rt.jar:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/jre/lib/sunrsasign.jar:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/jre/lib/jsse.jar:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/jre/lib/jce.jar:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/jre/lib/charsets.jar:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/jre/lib/jfr.jar:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/jre/classes
Jicofo 2020-04-27 16:36:03.227 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() net.java.sip.communicator.SC_HOME_DIR_LOCATION=/etc/jitsi
Jicofo 2020-04-27 16:36:03.227 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.vendor=AdoptOpenJDK
Jicofo 2020-04-27 16:36:03.227 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() file.separator=/
Jicofo 2020-04-27 16:36:03.227 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() net.java.sip.communicator.impl.configuration.USE_PROPFILE_CONFIG=true
Jicofo 2020-04-27 16:36:03.228 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() net.java.sip.communicator.SC_HOME_DIR_NAME=jicofo
Jicofo 2020-04-27 16:36:03.228 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() java.vendor.url.bug=http://bugreport.sun.com/bugreport/
Jicofo 2020-04-27 16:36:03.228 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() sun.io.unicode.encoding=UnicodeLittle
Jicofo 2020-04-27 16:36:03.228 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() sun.cpu.endian=little
Jicofo 2020-04-27 16:36:03.228 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() net.java.sip.communicator.SC_LOG_DIR_LOCATION=/var/log/jitsi
Jicofo 2020-04-27 16:36:03.229 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() sun.cpu.isalist=
Jicofo 2020-04-27 16:36:03.229 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() Normal classloader
Jicofo 2020-04-27 16:36:03.230 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() failed to find jitsi-defaults.properties with class loader, will continue without it.
Jicofo 2020-04-27 16:36:03.230 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() Normal classloader
Jicofo 2020-04-27 16:36:03.230 INFOS: [11] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() failed to find jitsi-default-overrides.properties with class loader, will continue without it.
Jicofo 2020-04-27 16:36:03.247 INFOS: [11] util.NetworkUtils.<clinit>().117 java.net.preferIPv6Addresses=null
Jicofo 2020-04-27 16:36:03.247 INFOS: [11] util.NetworkUtils.<clinit>().118 java.net.preferIPv4Stack=null
Jicofo 2020-04-27 16:36:03.252 INFOS: [11] impl.netaddr.NetworkAddressManagerServiceImpl.start().92 Network Address Manager         ...[  STARTED ]
Jicofo 2020-04-27 16:36:03.252 INFOS: [11] impl.netaddr.NetworkAddressManagerServiceImpl.start().98 Network Address Manager Service ...[REGISTERED]
Jicofo 2020-04-27 16:36:03.256 INFOS: [11] org.jitsi.version.AbstractVersionActivator.log() VersionService registered: JiCoFo 1.0.549
Jicofo 2020-04-27 16:36:03.497 INFOS: [11] org.jitsi.jicofo.JitsiMeetGlobalConfig.init().205 Automatically grant 'owner' role: true
Jicofo 2020-04-27 16:36:03.498 INFOS: [11] org.jitsi.jicofo.JitsiMeetGlobalConfig.init().218 Jibri requests in PENDING state will be timed out after: 90 seconds
Jicofo 2020-04-27 16:36:03.498 INFOS: [11] org.jitsi.jicofo.JitsiMeetGlobalConfig.init().231 Will attempt a maximum of 5 Jibri retries after failure
Jicofo 2020-04-27 16:36:03.498 INFOS: [11] org.jitsi.jicofo.JitsiMeetGlobalConfig.init().245 Lonely participants will be "terminated" after 20000 milliseconds
Jicofo 2020-04-27 16:36:03.526 AVERTISSEMENT: [11] org.jitsi.jicofo.FocusManager.log() No dedicated JVB MUC XMPP connection configured - falling back to the default XMPP connection
Jicofo 2020-04-27 16:36:03.529 INFOS: [11] org.jitsi.jicofo.bridge.BridgeSelector.log() Using org.jitsi.jicofo.bridge.SingleBridgeSelectionStrategy
Jicofo 2020-04-27 16:36:03.529 INFOS: [11] org.jitsi.jicofo.bridge.BridgeSelector.log() Bridge failure reset threshold: 300000
Jicofo 2020-04-27 16:36:03.529 INFOS: [11] org.jitsi.jicofo.bridge.BridgeSelector.log() Local region: null
Jicofo 2020-04-27 16:36:03.530 INFOS: [11] org.jitsi.jicofo.JitsiMeetServices.log() Using a Bridge MUC detector with MUC: jvbbrewery@internal.auth.jitsi.domain.com
Jicofo 2020-04-27 16:36:03.546 AVERTISSEMENT: [15] org.jitsi.impl.protocol.xmpp.XmppProtocolProvider.register().230 The always_trust config option is enabled. All XMPP server provided certificates are accepted.
Jicofo 2020-04-27 16:36:03.557 INFOS: [11] org.eclipse.jetty.util.log.initialized() Logging initialized @602ms to org.eclipse.jetty.util.log.Slf4jLog
Jicofo 2020-04-27 16:36:03.755 INFOS: [11] org.eclipse.jetty.server.Server.doStart() jetty-9.4.15.v20190215; built: 2019-02-15T16:53:49.381Z; git: eb70b240169fcf1abbd86af36482d1c49826fa0b; jvm 1.8.0_232-b09
Jicofo 2020-04-27 16:36:04.095 INFOS: [17] org.jitsi.jicofo.ProtocolProviderHandler.registrationStateChanged().144 XmppProtocolProvider(focus@auth.jitsi.domain.com/focus30457986069299 (Jabber)): RegistrationStateChangeEvent[ oldState=Unregistered; newState=RegistrationState=Registered; reasonCode=-1; reason=null]
Jicofo 2020-04-27 16:36:04.146 INFOS: [17] org.jitsi.jicofo.xmpp.BaseBrewery.start().186 Joined brewery room: jvbbrewery@internal.auth.jitsi.domain.com
Jicofo 2020-04-27 16:36:04.156 INFOS: [17] org.jitsi.jicofo.ComponentsDiscovery.log() New component discovered: conference.jitsi.domain.com, null
Jicofo 2020-04-27 16:36:04.156 INFOS: [17] org.jitsi.jicofo.JitsiMeetServices.log() MUC component discovered: conference.jitsi.domain.com
Jicofo 2020-04-27 16:36:04.161 INFOS: [17] org.jitsi.jicofo.ComponentsDiscovery.log() New component discovered: auth.jitsi.domain.com, Prosody(0.11.4,Linux)
Jicofo 2020-04-27 16:36:04.161 INFOS: [17] org.jitsi.jicofo.JitsiMeetServices.log() Detected XMPP server version: Prosody(0.11.4,Linux)
Jicofo 2020-04-27 16:36:04.164 INFOS: [17] org.jitsi.jicofo.ComponentsDiscovery.log() New component discovered: guest.jitsi.domain.com, Prosody(0.11.4,Linux)
Jicofo 2020-04-27 16:36:04.165 INFOS: [17] org.jitsi.jicofo.ComponentsDiscovery.log() Services re-discovery interval: 30000
Jicofo 2020-04-27 16:36:04.168 INFOS: [17] org.jitsi.jicofo.FocusManager.log() XMPP provider reg state: RegistrationState=Registered
Jicofo 2020-04-27 16:36:04.176 INFOS: [17] org.jitsi.impl.protocol.xmpp.XmppProtocolProvider.doConnect().305 XMPP provider Jabber:focus@auth.jitsi.domain.com/focus30457986069299@localhost connected (JID: focus@auth.jitsi.domain.com/focus30457986069299)
Jicofo 2020-04-27 16:36:04.524 INFOS: [11] org.eclipse.jetty.server.handler.ContextHandler.doStart() Started o.e.j.s.ServletContextHandler@4a79bc0a{/,null,AVAILABLE}
Jicofo 2020-04-27 16:36:04.534 INFOS: [11] org.eclipse.jetty.server.AbstractConnector.doStart() Started ServerConnector@51638a47{HTTP/1.1,[http/1.1]}{0.0.0.0:8888}
Jicofo 2020-04-27 16:36:04.534 INFOS: [11] org.eclipse.jetty.server.Server.doStart() Started @1583ms
Jicofo 2020-04-27 16:36:04.537 INFOS: [1] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() org.jitsi.jicofo.BRIDGE_MUC=jvbbrewery@internal.auth.jitsi.domain.com
Jicofo 2020-04-27 16:36:04.537 INFOS: [1] org.jitsi.impl.configuration.ConfigurationServiceImpl.log() org.jitsi.jicofo.ALWAYS_TRUST_MODE_ENABLED=true
Jicofo 2020-04-27 16:36:04.541 INFOS: [1] org.jitsi.xmpp.component.ComponentBase.log() Component org.jitsi.jicofo. config: 
Jicofo 2020-04-27 16:36:04.541 INFOS: [1] org.jitsi.xmpp.component.ComponentBase.log()   ping interval: 10000 ms
Jicofo 2020-04-27 16:36:04.541 INFOS: [1] org.jitsi.xmpp.component.ComponentBase.log()   ping timeout: 5000 ms
Jicofo 2020-04-27 16:36:04.541 INFOS: [1] org.jitsi.xmpp.component.ComponentBase.log()   ping threshold: 3
Jicofo 2020-04-27 16:36:04.552 INFOS: [11] org.jitsi.jicofo.health.Health.log() Started with interval=10000, timeout=PT30S, maxDuration=PT3S, stickyFailures=false.
Jicofo 2020-04-27 16:36:08.493 INFOS: [28] org.jitsi.jicofo.xmpp.BaseBrewery.processInstanceStatusChanged().329 Added brewery instance: jvbbrewery@internal.auth.jitsi.domain.com/51c25d72-005e-426a-a16e-c06cb969c6b7
Jicofo 2020-04-27 16:36:08.493 AVERTISSEMENT: [28] org.jitsi.jicofo.bridge.BridgeSelector.log() No pub-sub node mapped for jvbbrewery@internal.auth.jitsi.domain.com/51c25d72-005e-426a-a16e-c06cb969c6b7
Jicofo 2020-04-27 16:36:08.494 INFOS: [28] org.jitsi.jicofo.bridge.Bridge.log() Setting max total packet rate of 50800.0
Jicofo 2020-04-27 16:36:08.495 INFOS: [28] org.jitsi.jicofo.bridge.Bridge.log() Setting average participant packet rate of 500
Jicofo 2020-04-27 16:36:08.497 INFOS: [28] org.jitsi.jicofo.bridge.BridgeSelector.log() Added new videobridge: Bridge[jid=jvbbrewery@internal.auth.jitsi.domain.com/51c25d72-005e-426a-a16e-c06cb969c6b7, relayId=null, region=null, stress=0,00]
Jicofo 2020-04-27 16:36:08.499 INFOS: [41] org.jitsi.jicofo.bridge.JvbDoctor.log() Scheduled health-check task for: jvbbrewery@internal.auth.jitsi.domain.com/51c25d72-005e-426a-a16e-c06cb969c6b7
Jicofo 2020-04-27 16:36:14.598 INFOS: [36] org.jitsi.jicofo.health.Health.log() Performed a successful health check in PT0.058S. Sticky failure: false
Jicofo 2020-04-27 16:36:24.553 INFOS: [36] org.jitsi.jicofo.health.Health.log() Performed a successful health check in PT0.013S. Sticky failure: false
Jicofo 2020-04-27 16:36:34.179 INFOS: [31] org.jitsi.jicofo.ComponentsDiscovery.log() New component discovered: focus.jitsi.domain.com, null
Jicofo 2020-04-27 16:36:34.558 INFOS: [36] org.jitsi.jicofo.health.Health.log() Performed a successful health check in PT0.018S. Sticky failure: false
Jicofo 2020-04-27 16:36:44.553 INFOS: [36] org.jitsi.jicofo.health.Health.log() Performed a successful health check in PT0.013S. Sticky failure: false
Jicofo 2020-04-27 16:36:54.553 INFOS: [36] org.jitsi.jicofo.health.Health.log() Performed a successful health check in PT0.012S. Sticky failure: false
damencho commented 4 years ago

Open the javascript console in the browser to see the errors there, why they cannot connect.

damencho commented 4 years ago

And maybe check prosody logs for errors.

electro575 commented 4 years ago

What is the javascript console in the browser ? I can't see this.

I have purge all package and reinstall.

Modify my prosody configuration file without : -conference duration -speaker -recorder

Just add : -conference -focus

Thank you a lot.

damencho commented 4 years ago

All browsers have Developer menu -> JavaScript console.

Echolon commented 4 years ago

@electro575 can this be closed? you renamed to "Resolved"