Creating a MySQL cluster, using mysql-server docker containers, on multiple servers
问题 I'm trying to create an MySQL cluster of 3 nodes using mysql-server docker containers. I have 3 separate cloud instances and docker is setup on all 3 of them. Each server will have only 1 container running on it - to achieve High Availability when in cluster. I start the containers on all 3 servers, individually, with the command docker run --name=db -p 3301:3306 -v db:/var/lib/mysql -d mysql/mysql-server I'm mapping the port 3306 of container to my server's 3301 port . I've also created a