Comments - Readwritesplit
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.
Hello,
I do steps here https://mariadb.com/kb/en/mariadb-enterprise/mariadb-maxscale-14/maxscale-readwrite-splitting-with-mysql-replication/
to setup maxscale 2.0 and I have in backend 2 MySQL 5.7 configured as master slave.
But maxscale can't detect master server and slave server; So when I try to connect through maxscale I got:
and in error log:
my config file:
But in all documentation I saw server1 status as Running, Master
Does the output of
SHOW SLAVE STATUS
show that replication is running properly?yes it's running correctly
and here mysql cnf file for master
slave:
Hello,
Eureka
GRANT REPLICATION CLIENT ON *.* TO 'myuser'@'%';
give maxscale user access to replica, and I had issue in maxscale logging so i didn't see the error in the log
Thank you.