cluster-with-static.conf.example 419 B

123456789101112131415
  1. ## Cluster discovery via static seed nodes
  2. cluster {
  3. ## Human-friendly name of the EMQX cluster.
  4. name = emqxcl
  5. ## Service discovery method for the cluster nodes
  6. discovery_strategy = static
  7. ## If true, the node will try to heal network partitions automatically
  8. autoheal = true
  9. ## List EMQX node names in the static cluster
  10. static.seeds = ["emqx1@192.168.0.1", "emqx2@192.168.0.2"]
  11. }