Description |
This article describes the process of cloning existing HA nodes to different network segments without breaking clusters. |
Scope | FortiSOAR HA Nodes. |
Solution |
Pre-requisites:
For more details check the guide here.
csadm license --get-device-uuid
csadm ha suspend-cluster
For more details about suspend-cluster check the guide here.
systemctl disable celeryd celerybeatd postgresql-14
csadm services –stop
Steps: Moving HA Nodes to the new network:
Firewall Rules Reconfigurations:
Remove Old Firewall Rules:
firewall-cmd --list-rich-rules
firewall-cmd --remove-rich-rule='<copy rule here>' --permanent
firewall-cmd --remove-rich-rule='rule family="ipv4" source address="10.132.253.161/32" port port="5671" protocol="tcp" accept' --permanent
Add New Firewall Rules:
firewall-cmd --add-rich-rule='<copy rule here>' --permanent
Example:
firewall-cmd --add-rich-rule='rulefamily="ipv4" source address="192.168.1.161/32" port port="9200" protocol="tcp" accept' --permanent
Resuming Cluster:
systemctl enable postgresql-14
csadm license --refresh-device-uuid
systemctl enable postgresql-14
csadm license --refresh-device-uuid
systemctl enable celeryd celerybeatd systemctl start celeryd celerybeatd
csadm ha resume-cluster
Troubleshooting:
|