Setup rabbitmq cluster with puppet -


i trying setup rabbitmq cluster puppet. have nodea initiates cluster , other nodes should join nodea's cluster using nodea's hostname. other nodes execute following code.

class { 'rabbitmq':    service_manage => false,    port => '5672',    delete_guest_user => true,    erlang_cookie => $erlang_hash,    config_cluster    => true,    cluster_nodes     => ['nodea'],    cluster_node_type => 'ram',    wipe_db_on_cookie_change => true, } 

nodes executing puppet code can ping nodea , puppet generates following config file,

% file managed puppet % template path: rabbitmq/templates/rabbitmq.config [   {rabbit, [     {cluster_nodes, {['rabbit@nodea'], ram}},     {cluster_partition_handling, ignore},     {default_user, <<"guest">>},     {default_pass, <<"guest">>}   ]} ]. % eof 

nodea disc node , node trying join nodea's cluster ram node.

unfortunately node executing puppet code doesn't join nodea's cluster.


Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -