22 lines
793 B
Plaintext
22 lines
793 B
Plaintext
##--------------------------------------------------------------------
|
|
## Cluster in service discovery via manual join mode
|
|
##
|
|
## Configs to instruct how individual nodes can discover each other
|
|
##--------------------------------------------------------------------
|
|
## Note: This is an example of how to configure this feature
|
|
## you should copy and paste the below data into the emqx.conf for working
|
|
|
|
cluster {
|
|
## Human-friendly name of the EMQX cluster.
|
|
name = emqxcl
|
|
|
|
## Service discovery method for the cluster nodes
|
|
discovery_strategy = manual
|
|
|
|
## List of core nodes that the replicant will connect to
|
|
core_nodes = ["emqx1@192.168.0.1", "emqx2@192.168.0.2"]
|
|
|
|
## If true, the node will try to heal network partitions automatically
|
|
autoheal = true
|
|
}
|