Mariadb Replication

I have installed mariadb104-server-10.4.6 galera: 25.3.26 FreeBSD 12 This is my.cnf. root@freebsd:/usr/local/etc # nano my.cnf [mysqld] binlog_format=ROW default-storage-engine=innodb innodb_autoinc_lock_mode=2 bind-address=0.0.0.0

  1. Galera Provider Configuration wsrep_on=ON wsrep_provider=/usr/local/lib/libgalera_smm.so
  1. Galera Cluster Configuration wsrep_cluster_name="test_cluster" wsrep_cluster_address="gcomm:192.168.64.143,192.168.64.144"
  1. Galera Synchronization Configuration wsrep_sst_method=rsync
  1. Galera Node Configuration wsrep_node_address="this_node_ip" wsrep_node_name="this_node_name" I have this error when trying to start mariadb. root@freebsd:/usr/local/etc # service mysql-server start --wsrep-new-cluster /usr/local/etc/rc.d/mysql-server: ERROR: --wsrep-new-cluster not found in mysql_instances

Please help me. What I have to do?

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.