You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,18 @@ Note: The VPC must have `enableDnsHostnames` = `true` and `enableDnsSupport` = `
50
50
51
51
If you can SSH onto one of the nodes you can run:
52
52
`docker exec rabbitmq rabbitmqctl cluster_status` to see the cluster status of that node.
53
+
54
+
## Upgrading
55
+
56
+
Sometimes we will need to do a hot restart of a node in the cluster in order to preform some maintenance, upgrade, or infrastructure improvements. To do this graceful we need to remove the current node from the cluster. This helps keep the node in sync and organized correctly. To do this we need to stop the app and reset the node as follows:
57
+
58
+
```SH
59
+
docker exec rabbitmq rabbitmqctl cluster_status
60
+
docker exec rabbitmq rabbitmqctl stop_app
61
+
docker exec rabbitmq rabbitmqctl reset
62
+
docker exec rabbitmq rabbitmqctl cluster_status
63
+
```
64
+
53
65
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
0 commit comments