diff options
| author | D Corbacho <diana@rabbitmq.com> | 2016-11-14 14:36:14 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-14 14:36:14 +0000 |
| commit | c53ac3f20bc0b58b08ccec428902b1d6de4f3e75 (patch) | |
| tree | ea48ca9f675e1f8c307f2f6dde63652ba0992230 /docs/rabbitmq.conf.example | |
| parent | 6c0fdd3a7f0aa938c2a3606beae8227e0a3d3069 (diff) | |
| parent | 01f526dd8b43b8f3e85c6b5e808c27078eeb216e (diff) | |
| download | rabbitmq-server-git-c53ac3f20bc0b58b08ccec428902b1d6de4f3e75.tar.gz | |
Merge pull request #1008 from rabbitmq/rabbitmq-server-988
DNS peer discovery backend
Diffstat (limited to 'docs/rabbitmq.conf.example')
| -rw-r--r-- | docs/rabbitmq.conf.example | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/rabbitmq.conf.example b/docs/rabbitmq.conf.example index db65572c2a..33685191a3 100644 --- a/docs/rabbitmq.conf.example +++ b/docs/rabbitmq.conf.example @@ -307,14 +307,24 @@ ## See http://www.rabbitmq.com/clustering.html#auto-config for ## further details. ## + +# autocluster.peer_discovery_backend = rabbit_peer_discovery_classic_config +# # autocluster.classic_config.nodes.node1 = rabbit1@hostname # autocluster.classic_config.nodes.node2 = rabbit2@hostname # autocluster.classic_config.nodes.node3 = rabbit3@hostname # autocluster.classic_config.nodes.node4 = rabbit4@hostname +## DNS-based peer discovery. This backend will list A records +## of the configured hostname and perform reverse lookups for +## the addresses returned. + +# autocluster.peer_discovery_backend = rabbit_peer_discovery_dns +# autocluster.dns.hostname = rabbitmq.discovery.mycompany.local + ## This node's type can be configured. If you are not sure ## what node type to use, always use 'disc'. -# autocluster.classic_config.node_type = disc +# autocluster.node_type = disc ## Interval (in milliseconds) at which we send keepalive messages ## to other cluster members. Note that this is not the same thing |
