Skip to content

Commit da99e16

Browse files
committed
Update cluster example to include required parameters
The erlang_cookie and wipe_db_on_cookie_change parameters are required for rabbitmq clustering.
1 parent 1cc2e54 commit da99e16

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,11 @@ To use RabbitMQ clustering facilities, use the rabbitmq parameters
123123

124124
```puppet
125125
class { 'rabbitmq':
126-
config_cluster => true,
127-
cluster_nodes => ['rabbit1', 'rabbit2'],
128-
cluster_node_type => 'ram',
126+
config_cluster => true,
127+
cluster_nodes => ['rabbit1', 'rabbit2'],
128+
cluster_node_type => 'ram',
129+
erlang_cookie => 'A_SECRET_COOKIE_STRING',
130+
wipe_db_on_cookie_change => true,
129131
}
130132
```
131133

0 commit comments

Comments
 (0)