MySQL Fabric is a new product and some folks are running into issues when trying to deploy test instances that grow beyond a single server.
The Fabric documentation has an example GRANT statement illustrating the simple localhost use case:
CREATE USER 'fabric'@'localhost' IDENTIFIED BY 'secret'; GRANT ALL ON *.* TO 'fabric'@'localhost';
The example shown above belies the more complex way that Fabric uses the fabric login.
The Fabric config file has 3 sections that deal with user and password values, I will only focus on the [servers] section of the configuration file. The user and password defined in this section is used by the mysqlfabric utility to connect to managed servers …
[Read more]