Hi !
I bootstrap new cluster on CentOS with bootstrap-pxc option of init.d script. Unfortunately in my.cnf was defined IP just of this node, after starting other nodes (where i defined all nodes IPs in my.cnf) when i try SHOW VARIABLES LIKE “wsrep_cluster_address” i got
on bootstraped node
+-----------------------+------------------------+
| Variable_name | Value |
+-----------------------+------------------------+
| wsrep_cluster_address | gcomm:// |
+-----------------------+------------------------+
that right, but on other nodes i got
+-----------------------+------------------------+
| Variable_name | Value |
+-----------------------+------------------------+
| wsrep_cluster_address | gcomm://ip_of_bootstrap_node:4567 |
+-----------------------+------------------------+
so just one node ip and no IPs of other 2 nodes.
Is it possible update this variable to state with all nodes listed in Value without cluster restart ?
Thanks.