MYSQL 5.5 mirror on Ubuntu 12.04 LTS

Discussion in 'Installation/Configuration' started by dgeho1, Sep 12, 2013.

  1. dgeho1

    dgeho1 Member

    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
     
  2. florian030

    florian030 Well-Known Member HowtoForge Supporter

    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' (...)
     
  3. dgeho1

    dgeho1 Member

    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?
     

Share This Page