我正在尝试在三个 MariaDb 节点之间设置一个 Galera 集群。但是,我什至无法通过第一个节点的配置。当我进行配置并尝试重新启动 MariaDB 时,配置文件 (/etc/my.cnf.d/server.cnf) 中以 wsrep_ 开头的行似乎存在问题。
我正在运行 CentOs-6.5 64-Bits,MariaDB 版本是 10.0x。
以下是 /etc/my.cnf.d/server/cnf 文件中的完整配置:
query_cache_size=0
binlog_format=ROW
default_storage_engine=innodb
innodb_autoinc_lock_mode=2
#The lines below are the ones causing the error and will not let MariaDb start
wsrep_provider=/usr/lib64/galera/libgalera_smm.so
wsrep_cluster_address=gcomm://192.168.1.20,192.168.1.30
wsrep_cluster_name='cluster1'
wsrep_node_address='192.168.1.10'
wsrep_node_name='db1'
wsrep_sst_method=rsync
wsrep_sst_auth=root:password
我该如何解决这个问题?