--
You received this message because you are subscribed to the Google Groups "codership" group.
To unsubscribe from this group and stop receiving emails from it, send an email to codership-tea...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/codership-team/6766b69d-7019-4861-a9a3-a03d2019a4dao%40googlegroups.com.
I’ve reduced the cluster to two nodes: galera_ca and galera_or
I have verified the network between the two are wide open, I can ssh, open the remote db, and perform operations.
I start galera_ca with:
sudo galera_new_cluster
And it runs just fine
and I start galera_or with:
sudo systemctl start mariadb
galera_or runs fine on its own, I have verified that.
But, when I fill in server.cnf it won’t start, even though galera_ca is showing 2 nodes in wsrep_cluster_size
[mariadb]
lower_case_table_names=1
[galera]
wsrep_on=ON
wsrep_provider=/usr/lib64/galera-4/libgalera_smm.so
wsrep_node_name='galera_ca'
wsrep_node_address="CA_EXTERNAL_IP"
wsrep_node_incoming_address=" CA_EXTERNAL_IP "
wsrep_sst_receive_address=" CA_EXTERNAL_IP "
wsrep_cluster_name='galera-experiment'
wsrep_cluster_address="gcomm:// CA_EXTERNAL_IP,OR_EXTERNAL_IP"
wsrep_provider_options="gcache.size=300M; gcache.page_size=300M"
wsrep_slave_threads=4
wsrep_sst_method=rsync
binlog_format=row
default_storage_engine=InnoDB
innodb_autoinc_lock_mode=2
bind-address=0.0.0.0
[mariadb]
lower_case_table_names=1
[galera]
wsrep_on=ON
wsrep_provider=/usr/lib64/galera-4/libgalera_smm.so
wsrep_node_name='galera_or'
wsrep_node_address=" OR_EXTERNAL_IP "
wsrep_node_incoming_address=" OR_EXTERNAL_IP "
wsrep_sst_receive_address=" OR_EXTERNAL_IP "
wsrep_cluster_name='galera-experiment'
wsrep_cluster_address="gcomm:// CA_EXTERNAL_IP, OR_EXTERNAL_IP "
wsrep_provider_options="gcache.size=300M; gcache.page_size=300M"
wsrep_slave_threads=4
wsrep_sst_method=rsync
binlog_format=row
default_storage_engine=InnoDB
innodb_autoinc_lock_mode=2
bind-address=0.0.0.0