Mariadb galera 节点加入集群时出错

Mariadb galera 节点加入集群时出错

当我尝试将节点加入主节点时出现这些错误。

Ubuntu 14.04 MariaDb Galera 5.5.42。

我在使用 rsync 时也遇到了这个问题。没有 iptables 规则阻止连接。任何帮助都非常有用。

WSREP: Failed to prepare for incremental state transfer: Local state UUID (00000000-0000-0000-0000-000000000000) does not match group state UUID (108c02b0-04b1-11e5-aab0-1b3efd0381b3): 1 (Operation not permitted)

[Warning] WSREP: 0.0 (): State transfer to 1.0 () failed: -32 (Broken pipe)

我的连接器会议

[mysqld]
binlog_format=ROW
default-storage-engine=innodb
innodb_autoinc_lock_mode=2
query_cache_size=0
query_cache_type=0
bind-address=0.0.0.0
wsrep_provider=/usr/lib/galera/libgalera_smm.so
wsrep_cluster_name="my_cluster"
wsrep_cluster_address="gcomm://10.10.10.1,10.10.10.3"
wsrep_sst_method=xtrabackup-v2
wsrep_sst_receive_address=10.10.10.1
wsrep_sst_auth='*:*'

我的捐赠者会议

[mysqld]
binlog_format=ROW
default-storage-engine=innodb
innodb_autoinc_lock_mode=2
query_cache_size=0
query_cache_type=0
bind-address=0.0.0.0
wsrep_provider=/usr/lib/galera/libgalera_smm.so
wsrep_cluster_name="my_cluster"
wsrep_cluster_address="gcomm://10.10.10.2,10.10.10.3"
wsrep_sst_method=xtrabackup-v2
wsrep_sst_auth='*:*'

相关内容