This is an example showing a simple deployment of mysql not intended for production use. In particular, the deployment does not make any high availability or redundancy guarantees which a productive ...
CREATE DATABASE dbTest2; USE dbTest2; SOURCE sql/00_create.sql SOURCE sql/01_add_data.sql GRANT ALL PRIVILEGES ON `dbTest2`.* TO 'test'@'%' IDENTIFIED BY 'VerySecret' WITH GRANT OPTION; Just wraps a ...