Dear Team, Hope you are doing well
We are planning to implement clustering for HiveMQ Enterprise Edition and it was recommended to use HiveMQ DNS Cluster Discovery Extension . After studying the documentation I am unable to completely understand the configuration part. Please find the below queries.
-
What is the first step for Clustering and How should I do it if am going for HiveMQ DNS Cluster Discovery Extension
-
With respect to the below example configuration, Can you help me to understand the following queries
What are the changes to be made ?
What is the bind address and port should i use ?
What do you mean by the IP address of your interface?
Will the port number 7800 remains constant ?
in the below mentioned example configuration
<?xml version="1.0"?>...
<cluster>
<enabled>true</enabled>
<transport>
<tcp>
<!-- replace this IP with the IP address of your interface -->
<bind-address>192.168.1.1</bind-address>
<bind-port>7800</bind-port>
</tcp>
</transport>
<discovery>
<static>
<node>
<!-- replace this IP with the IP address of your interface -->
<host>192.168.1.1</host>
<port>7800</port>
</node>
<node>
<!-- replace this IP with the IP address of another node -->
<host>192.168.1.2</host>
<port>7800</port>
</node>
</static>
</discovery>
</cluster>
...