mysql-docker-compose-examples icon indicating copy to clipboard operation
mysql-docker-compose-examples copied to clipboard

Results 5 mysql-docker-compose-examples issues
Sort by recently updated
recently updated
newest added

with fix for mysql-shell restart and waiting of mysql-routers fix #1 Add health check for more consistent invocation of dependent services Update MySQL version to 8.0.13

Everything runs fine when tried for the first time. Cluster got created and router working fine. Then I stop the containers and when I tried restarting them I get following...

I am trying to mount volumes for mysql nodes as ` volumes: - ./volumes/mysql/node2/data:/var/lib/mysql - ./volumes/mysql/node2/log:/var/log/mysql ` this causes router to fail, any help would be appreciated

i am getting following log at mysql-shell: indb_mysql-shell.1.va7hr5ktk1wu@node1 | mysqlx: [Warning] Using a password on the command line interface can be insecure. indb_mysql-shell.1.va7hr5ktk1wu@node1 | Setting up InnoDB cluster... indb_mysql-shell.1.va7hr5ktk1wu@node1 |...

docker container logs: We require all of MYSQL_HOST MYSQL_PORT MYSQL_USER MYSQL_PASSWORD MYSQL_INNODB_NUM_MEMBERS to be set. Exiting. It seems like MYSQL_INNODB_NUM_MEMBERS is missing from mysql-router.env. I added this as `MYSQL_INNODB_NUM_MEMBERS=3` but...