我正在 AWS 上使用 jitsi 设置一个自动调用的负载平衡环境,它将自动缩放 jitsi-videobridge 实例,将它们连接到韵律。
我已遵循本指南: https ://github.com/jitsi/jicofo/blob/master/doc/load_balancing.md
我是否应该在 prosody 为每个单独的 jitsi-videobridge 实例创建单独的组件?还是我在配置中遗漏了什么?如果我理解正确,您有单独的 jitsi-videobridge 节点与 XMPP 服务器通信并通过 PUBSUB 发送统计信息,其中 Jicofo 执行这些 jitsi-videobridges 负载平衡背后的逻辑。
非常感谢 !
当我尝试将第二个 jitsi-videobridge 连接到韵律时,我收到了这个错误:
JVB 的输出:
JVB 2017-05-17 15:38:46.808 SEVERE: [33] org.jitsi.meet.ComponentMain.call().278 conflict, host: IP, port:5347
org.xmpp.component.ComponentException: conflict
at org.jivesoftware.whack.ExternalComponent.connect(ExternalComponent.java:219)
at org.jivesoftware.whack.ExternalComponentManager.addComponent(ExternalComponentManager.java:221)
at org.jivesoftware.whack.ExternalComponentManager.addComponent(ExternalComponentManager.java:201)
at org.jitsi.meet.ComponentMain$3.call(ComponentMain.java:270)
at org.jitsi.meet.ComponentMain$3.call(ComponentMain.java:255)
at org.jitsi.retry.RetryStrategy$TaskRunner.run(RetryStrategy.java:193)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at java.lang.Thread.run(Thread.java:748)
PROSODY的输出:
mod_component info Disconnecting component, <stream:error> is: <stream:error><conflict xmlns='urn:ietf:params:xml:ns:xmpp-streams'/><text xmlns='urn:ietf:params:xml:ns:xmpp-streams'>Component already connected</text></stream:error>
May 17 15:39:16 jcp20c3ae0 info component disconnected: jitsi-videobridge.domainname.com (false)
PROSODY 的配置文件:
VirtualHost "pubsub.domainname"
admins= { "jitsi-videobridge.domainname” }
modules_enabled = {
"pubsub";
}
VirtualHost "domainname"
authentication = "anonymous"
modules_enabled = {
"bosh";
}
c2s_require_encryption = false
VirtualHost "auth.domainname"
authentication = "internal_plain"
admins = { "focus@auth.domainname" }
Component "conference.domainname" "muc"
Component "jitsi-videobridge.domainname"
component_secret = "password"
Component "focus.domainname"
component_secret = “password”
JVB的配置:
# Jitsi Videobridge settings
# sets the XMPP domain (default: none)
JVB_HOSTNAME=domainname.com
# sets the hostname of the XMPP server (default: domain if set, localhost otherwise)
JVB_HOST=IP
# sets the port of the XMPP server (default: 5275)
JVB_PORT=5347
# sets the shared secret used to authenticate to the XMPP server
JVB_SECRET=password
# extra options to pass to the JVB daemon
JVB_OPTS="--apis=xmpp,rest"
# adds java system props that are passed to jvb (default are for home and logging config file)
JAVA_SYS_PROPS="$JVB_EXTRA_JVM_PARAMS -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"