...
Create a Bash script named "isolate_node.sh" with the following content:
Code Block #!/bin/bash # Block incoming traffic on port 7800 iptables -A INPUT -p tcp --dport 7800 -j DROP # Block outgoing traffic on port 7800 iptables -A OUTPUT -p tcp --dport 7800 -j DROP # Save the changes iptables-save > /dev/null
Run the script with sudo permissions on the affected node:
Code Block language bash sudo chmod +x isolate_node.sh sudo ./isolate_node.sh
After executing the script, check the "
hivemq.log
" file of the node where the command was run. You should observe that the cluster size has decreased to 1. Additionally, the "hivemq.log" of other nodes should indicate that the cluster size has been reduced by one.You can also verify the changes in the Control Center or in your monitoring dashboard.
With the node isolated, you can proceed to create heap dump or thread dumps for analysis.
Once the required data is collected from the node, remove all rules from the
iptables
firewall to allow the node to rejoin the cluster. Use the following command:Code Block sudo iptables -F
After executing the above command, the isolated node will rejoin the cluster. If you prefer to shut down this node and create a new one instead, you can skip step 6.
...
Filter by label (Content by label) | |||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|