1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-27 16:35:27 +02:00
tldr/pages/common/rabbitmqctl-cluster.md
ramadasmr 5e983d927b
rabbitmqctl-{cluster,users,vhosts}: add page (#17254)
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
2025-07-19 04:56:11 +03:00

32 lines
752 B
Markdown

# rabbitmqctl-cluster
> Manage RabbitMQ nodes in a cluster.
> More information: <https://www.rabbitmq.com/rabbitmqctl.8.html>.
- Display the status of the cluster:
`rabbitmqctl cluster_status`
- Display the status of the current node:
`rabbitmqctl status`
- Start the RabbitMQ application on a specific node:
`rabbitmqctl {{[-n|--node]}} {{nodename}} start_app`
- Stop the RabbitMQ application on a specific node:
`rabbitmqctl {{[-n|--node]}} {{nodename}} stop_app`
- Stop a specific RabbitMQ node:
`rabbitmqctl {{[-n|--node]}} {{nodename}} stop`
- Reset a specific RabbitMQ node to a clean state:
`rabbitmqctl {{[-n|--node]}} {{nodename}} reset`
- Make the current node join an existing cluster:
`rabbitmqctl join_cluster {{nodename}}`