Cluster
Name
Description
Default
{
"server": {
"cluster": {
"enabled": true,
"config_path: "config/cluster.xml"
}
}
}Cluster configuration
<?xml version="1.0" encoding="UTF-8"?>
<hazelcast xmlns="http://www.hazelcast.com/schema/config"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.hazelcast.com/schema/config
http://www.hazelcast.com/schema/config/hazelcast-config-4.2.xsd">
<cluster-name>fortified</cluster-name>
<network>
<port auto-increment="false">5701</port>
<join>
<!-- static ip -->
<multicast enabled="false"/>
<tcp-ip enabled="true">
<!-- cluster members -->
<member>127.0.0.1</member>
</tcp-ip>
<!-- multicast -->
<!--
<multicast enabled="true">
<multicast-group>224.2.2.3</multicast-group>
<multicast-port>54327</multicast-port>
</multicast>
<tcp-ip enabled="false"/>
-->
</join>
</network>
</hazelcast>More information
Last updated