You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This allows the container to finish once the dump as been made
to allow the next migration to start.
With this, we've used the root user to allow changing of ownership
of the mysqldump volume.
Because of MDEV-20912 being resolved we don't need to manually change
collations.
sh -c "mariadb -h${MYSQL_CONT_NAME} -uroot -p${MARIADB_ROOT_PASSWORD} -e 'SELECT @@print_identified_with_as_hex; show create user current_user();'"
28
+
gosu mysql sh -c "mariadb-dump --ssl-verify-server-cert=OFF -h${MYSQL_CONT_NAME} -uroot -p${MARIADB_ROOT_PASSWORD} --system=timezones | zstd > /etc/dump/${fileName}"
29
+
echo'Show MySQL 8.x create user'
30
+
gosu mysql sh -c "mariadb --ssl-verify-server-cert=OFF -h${MYSQL_CONT_NAME} -uroot -p${MARIADB_ROOT_PASSWORD} -e 'SELECT @@print_identified_with_as_hex; show create user current_user();'"
0 commit comments