Description
OpenMeetings 2.1 or later is required to use clustering. One database is used for all OpenMeetings servers, so all database tables are shared across OM instances. Certain folders should be shared between all servers to allow access to the files/recording.
Configuration
- Multiple OM servers should be set up as described in Installation
- All servers should be configured to have same Time zone (To avoid Schedulers to drop user sessions as outdated)
- All servers should be configured to use the same DB
Network
Multicast should be set up on all servers
Here are the steps for *nix like systems Reference article
- Check your network interface supports multicast by running the following command in a terminal window:
ifconfig -a
MULTICAST
against your network interface, it means your kernel is complied with Multicast option and your network interface supports it. - Check if multicast routing is configured:
netstat -nr
224.0.0.0 – 239.255.255.255
in the first table, it means you need to add your desired mutlicast address to your routes table. - To add the multicast address:
sudo route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0
eth0
corresponds to your network interface name
Make sure you run this command on all servers you want to be multicast enabled. - Using netstat check if the multicast IP is visible in your route table (see step 2.)
- Using tcpdump and ping check if your server is able to multicast.
Run the following command on all the servers.sudo tcpdump -ni eth0 host 224.0.0.0
ping -t 1 -c 2 224.0.0.0
- Run
sudo route -v delete -net 224.0.0.0 netmask 240.0.0.0
Database
- Add users who can connect to the database remotely
- Update
/opt/om/webapps/openmeetings/WEB-INF/classes/META-INF/persistence.xml
set correct server address, login and password. Also uncomment following line:<property name="openjpa.RemoteCommitProvider" value="tcp(Addresses=127.0.0.1)" />
File systems
If files and recordings using the same physical folders the files and recordings will be available for each node. You can do this using Samba or NFS, for example. For using NFS do the following:
- Install NFS to the data server. In the file
/etc/exports
add the following lines:/opt/om/webapps/openmeetings/upload 10.1.1.2(rw,sync,no_subtree_check,no_root_squash) /opt/om/webapps/openmeetings/streams 10.1.1.2(rw,sync,no_subtree_check,no_root_squash)
- Install NFS common tools to other nodes. In the file
/etc/fstab
do the following:10.1.1.1:/opt/om/webapps/openmeetings/upload/ /opt/om/webapps/openmeetings/upload nfs timeo=50,hard,intr 10.1.1.1:/opt/om/webapps/openmeetings/streams/ /opt/om/webapps/openmeetings/streams nfs timeo=50,hard,intr
mount -a
OM nodes configuration
-
In the file
/opt/om/webapps/openmeetings/WEB-INF/classes/hazelcast.xml
:- Set
instance-name
for each server to unique value - Comment out/delete following block:
<network> <join> <multicast enabled="false"/> <tcp-ip enabled="false"/> <aws enabled="false"/> </join> </network>
- In case there are more than one network interface with multicast support and/or additional hazelcast configuration is required Based on the following documentation: http://docs.hazelcast.org/docs/3.10.1/manual/html-single/index.html
- Set
Ensure everything works as expected
- Set up the cluster and loggin with two users, go to the same room (also check before room entering that the status page with the room list shows the correct number of participants before entering the room). You should login to the same server initially, the server will redirect you for the conference room to the appropriate server automatically. Both users should be in the same room.
- Do the same with only two users but go to _different_ rooms. The calculation should send both users to different servers, cause based on the calculation two different rooms on a cluster with two nodes should go exactly one room for each node. You can now loggin really to node1 and node2 of your cluster while those users are loggedin and go to
Administration > Connections
and check in the column "Server Name" where they are located. They should be on different server.
Additionally client details, available on click, should show different serverstcUrl
for clients with "Stream ID"
