Good morning,
We have been running mydbr on a Windows Server named 'corpappswimp' connecting to a MySQL db on a Linux box named 'atdmariadblive'. In order to connect the mydbr installation to the db server, we had to create user permissions for a user named 'mydbr@corpappswimp' which means that our mydbr_config.php looks like the following:
<?php
// myDBR configuration file. Created: 2014-10-27 14:27:29
define( "DB_VENDOR", 'mysql' );
define( "DB_HOST", 'atdmariadblive' );
define( "DB_PORT", 3306 );
define( "DB_NAME", 'mydbr' );
define( "DB_USER", 'mydbr' );
define( "DB_PASSWORD", 'readonly!@#$' );
define( "SETUP_DONE", true );
We recently switched to running atdmariadblive through an HAProxy, which broke this configuration. We now get "Connection failed: Check the username and the password in mydbr_config.php." for all pages at corpappswimp/mydbr. My server admin let me know that we need to switch the mydbr user from 'mydbr@corpappswimp' to 'mydbr@%'. What is the best way to set this up?