Skip to content

Commit

Permalink
Update cluster example to include required parameters
Browse files Browse the repository at this point in the history
The erlang_cookie and wipe_db_on_cookie_change parameters
are required for rabbitmq clustering.
  • Loading branch information
blkperl committed Jan 2, 2015
1 parent 1cc2e54 commit da99e16
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,11 @@ To use RabbitMQ clustering facilities, use the rabbitmq parameters

```puppet
class { 'rabbitmq':
config_cluster => true,
cluster_nodes => ['rabbit1', 'rabbit2'],
cluster_node_type => 'ram',
config_cluster => true,
cluster_nodes => ['rabbit1', 'rabbit2'],
cluster_node_type => 'ram',
erlang_cookie => 'A_SECRET_COOKIE_STRING',
wipe_db_on_cookie_change => true,
}
```

Expand Down

0 comments on commit da99e16

Please sign in to comment.