Skip to content
This repository was archived by the owner on Jan 14, 2026. It is now read-only.

Clustering multiple Jitsi Videobridges using Hazelcast plugin

Dele Olajide edited this page Mar 22, 2022 · 10 revisions

Background

https://github.com/igniterealtime/openfire-pade-plugin/discussions/206#discussioncomment-1843253

Configuration

If any the Openfire server cluster nodes does not have a public static IP address and is behind a firewall with network settings for the local/private IP address and public address, then the settings for each node has to be made in the openfire.xml file for each node.

This is required because the settings in the UI will be stored in the database which is shared by all nodes. Each node needs to store its own settings locally in the openfire.xml file on the node server.

Configure ofmeet.local_address with the local/private IP address of the server node Configure ofmeet.public_address with the public IP address of the server node

  <ofmeet> 
    <local_address>192.168.1.251</local_address>  
    <public_address>192.168.1.251</public_address> 
  </ofmeet>  

Clone this wiki locally