×
Create a new article
Write your page title here:
We currently have 3,189 articles on s23. Type your article name above or create one of the articles listed here!



    s23
    3,189Articles

    Mysql-master-slave-replication

    Revision as of 07:49, 24 June 2009 by imported>Hundfred

    mysql-master-slave-replication

    1)on the master and the slave a new "replication" user has to be added

    mysql> create user repuser@kurs007 identified by 'xxxxx';
    Query OK, 0 rows affected (0.00 sec)
    

    2) set some rights

    mysql> create user repuser@kurs007 identified by 'xxxxx';
    Query OK, 0 rows affected (0.00 sec)
    

    now we have to edit the my.ini on the master and the slave

    master:

    server_id=1
    

    (there are loads of options, it is also possible to encrypt the connection with ssl.)

    slave:

    server-id=2
    master-host=<ip_address or fqdn>
    master-port=3306
    master-user=repuer #username
    master-passwort=xxxxx #can be given here, or later, if mysqld is started
    master-connect-retry=60 #in seconds
    
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.