I have deleted node with following commands:
rabbitmqctl -n mynode@hostname stop_app
rabbitmqctl stop_app;
rabbitmqctl -n mynode@hostname reset
rabbitmqctl start_app;
And when I check in cluster, node is not there anymore:
rabbitmqctl cluster_status
Problem is that when I check status of reseted node, node is still there:
rabbitmqctl -n mynode@G2dev2 status
So my question is how to delete node permanently?
No info about that on man page: https://www.rabbitmq.com/man/rabbitmqctl.1.man.html
Thank you
rabbitmqctl stop_app && rabbitmqctl reset && rabbitmqctl start_appand it was enough for me.. checked cluster status on other nodes and it was gone. Using rabbit 3.7.3 Erlang 20.2.3 – radtek Apr 20 '18 at 21:36