I am needing to setup a two server mirror for MySQL 5.5 on Ubuntu 12.04 LTS Does anybody know of of a set of instructions that aren't intended for previous to 5.5? Thanx Dave
The only difference is that you can´t set the master-data (like master_user, master_password and master_host) in the my.cnf. You must set the values within mysl by running Code: CHANGE MASTER TO MASTER_HOST='master', MASTER_USER='slave_user00', MASTER_PASSWORD='some_password' (...)
would this prevent the server from starting? The thing that prompted this was when I tried the configuration for older versions, the server would reply "Job failed to start" when trying to start the server.. Do you think this is it?