Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

Install MariaDB on

...

replica server

Install the same MariaDB server package that Abiquo API server is using on the slave server. This can be achieve by installing the corresponding replica server. To do this, install your current abiquo-release package on the replica server and executing run the command below:

Code Block
yum -y install MariaDB-server MariaDB-client

...

Configure DB replication on

...

the main DB server

Create On the main DB server, create the replication configuration file in master DB server :

Code Block
cat <<EOF >/etc/my.cnf.d/replication.cnf
[server]
log-basename=master
log-bin
binlog-format=row
server_id=1
EOF

Restart the mysql service:

Code Block
service mysql restart

Create a replicator user and grant it replication permissions by executing the query below on DB prompt. Replace REPLICA_USER, REPLICA_PASS and SLAVEREPLICA_SERVER as you wishwith values for your environment:

Code Block
grant replication slave on *.* to 'REPLICA_USER'@'SLAVE_SERVER' identified by 'REPLICA_PASS';
flush privileges;

...

Code Block
service mysql restart


Warning

Remember that, if you are using multiple slaves, each one must has a different server_id defined To use multiple replica servers, in /etc/my.cnf.d/replication.cnf for each replica server, you must define a different server_id, and it must be greater than the server_id of the mastermain server.

...

Initial replication

Open a new session on master DB server and execute the commands below at the mysql prompt. This will show master current status To perform the initial replication, get the current status of the main db, including the file and the current position in the log. We will need this later when replicating the DB in the slave. Leave this session as it is until replication is completed:, and then perform a dump of the database with the following steps

  1. Open a new session on the main DB server at the mysql prompt

  2. Run the following commands to get the file and current position

    Code Block
    flush tables with read lock;
    show master status;
    +----------------------+----------+--------------+------------------+
    | File                 | Position | Binlog_Do_DB | Binlog_Ignore_DB |
    +----------------------+----------+--------------+------------------+
    | master-bin.000001    |  3712878 |              |                  |
    +----------------------+----------+--------------+------------------+
    1 row in set (0.00 sec)

...

  1. Leave this session open and don’t make any changes until replication is completed.

  2. On the MariaDB main server, open another session and dump the kinton and kinton_accounting databases

...

  1. using --single-transaction option

    Code Block
    mysqldump --databases kinton kinton_accounting --routines  --single-transaction > dump.sql 

...

Configure slave replication point

  1. Copy dump.sql from the previous step from

...

  1. the main DB server to

...

  1. the replica DB server.

...

  1. When the copy finishes, import it into

...

  1. replica DB server. If this is a new installation you may need to create the kinton

...

  1. databases.

    Code Block
    mysql < dump.sql

...

  1. When the import finishes, configure

...

  1. replica DB server replication.

...

  1. On the replica DB server, go to the mysql prompt and run the change master command below

    1. Replace MAIN_SERVER, REPLICA_USER and REPLICA_PASS.

...

    1. Replace MASTER_LOG_FILE and MASTER_LOG_POS from the show master status

...

    1. above

      Code Block
      change master to
        MASTER_HOST='

...

    1. MAIN_SERVER',
        MASTER_USER='REPLICA_USER',
        MASTER_PASSWORD='REPLICA_PASS',
        MASTER_PORT=3306,
        MASTER_LOG_FILE='MASTER_LOG_FILE',
        MASTER_LOG_POS=MASTER_LOG_POS,
        MASTER_CONNECT_RETRY=10;

...

    1. For example, using the values from above of  master-bin.000001 and  3712878

      Code Block
      change master to
        MASTER_HOST='services.lab.example.com',
        MASTER_USER='abiquodb',
        MASTER_PASSWORD='abiquodbpassword',
        MASTER_PORT=3306,
        MASTER_LOG_FILE='master-bin.000001',
        MASTER_LOG_POS=3712878,
        MASTER_CONNECT_RETRY=10;
  1. On the replica server, at the mysql prompt, start replica DB replication

    Code Block
    start slave;

...

  1. To check replication status

...

  1. , run the following command on the

...

  1. replica DB

    Code Block
    show slave status\G
    *************************** 1. row ***************************
                   Slave_IO_State: Waiting for master to send event
    ...
    1 row in set (0.00 sec)
    

    When Slave_IO_State is

...

  1. Waiting for master to send event

...

  1. , replication is finished

...

  1. Release locks by closing the first session on master DB server where locks were set and the master status was requested, and you are done!


References

https://mariadb.com/kb/en/setting-up-replication/

...