Hi, everyone, I have a question
Host A has a complete jitsi service, and host B only installs jvb. How to connect host B to host A, and how to establish a jvb cluster mode. The purpose is to handle high concurrency scenarios
Hi, everyone, I have a question
Host A has a complete jitsi service, and host B only installs jvb. How to connect host B to host A, and how to establish a jvb cluster mode. The purpose is to handle high concurrency scenarios
host B needs to use the same config as the jvb on host A, just not to use localhost to connect to prosody, but the IP of host A. Make sure prosody listens on port 5222 on the interface that host B will use to connect to. You only need to make sure both hosts have unique MUC_NICKNAME set in the config.
I configured it according to the tutorial on this webpage, but I did not find the JVB SECRET field in/etc/jitsi/videobridge/config
Cause that field was removed long time ago.
Check the other configs. sip-communicator.properties is the one holding the configuration for connection to the shard by default at the moment.
The/etc/jitsi/videobridge/sip communicator.properties content of host A:
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=myjitsi.cn
org.jitsi.videobridge.xmpp.user.shard.DOMAIN=auth.myjitsi.cn
org.jitsi.videobridge.xmpp.user.shard.USERNAME=jvb
org.jitsi.videobridge.xmpp.user.shard.PASSWORD=2jX1cQjF
org.jitsi.videobridge.xmpp.user.shard.MUC_JIDS=JvbBrewery@internal.auth.myjitsi.cn
org.jitsi.videobridge.xmpp.user.shard.MUC_NICKNAME=jvb1
org.jitsi.videobridge.DISABLE_TCP_HARVESTER=true
org.jitsi.videobridge.xmpp.user.shard.DISABLE_CERTIFICATE_VERIFICATION=true
The/etc/jitsi/videobridge/sip communicator.properties content of host B:
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=myjitsi.cn
org.jitsi.videobridge.xmpp.user.shard.DOMAIN=auth.myjitsi.cn
org.jitsi.videobridge.xmpp.user.shard.USERNAME=jvb
org.jitsi.videobridge.xmpp.user.shard.PASSWORD=2jX1cQjF
org.jitsi.videobridge.xmpp.user.shard.MUC_JIDS=JvbBrewery@internal.auth.myjitsi.cn
org.jitsi.videobridge.xmpp.user.shard.MUC_NICKNAME=jvb2
org.jitsi.videobridge.DISABLE_TCP_HARVESTER=true
org.jitsi.videobridge.xmpp.user.shard.DISABLE_CERTIFICATE_VERIFICATION=true
The IP address of host A is 172.18.0.68, and the IP address of host B is 172.18.0.67. The content of the image is the command I executed on host B