mysql主从复制

这里使用的是mysql5.6,主数据库安装在windows上面,从数据库安装在ubuntu上。

1.首先在主数据库上创建一个用户

CREATE USER 'lxg_test' IDENTIFIED BY '123456'

2.为这个用户授权为slave

GRANT REPLICATION SLAVE ON *.* to 'lxg_test'@'%' identified by '123456';

表示可以从任意ip使用此用户名和密码连接到主数据库

3.修改主数据库的“my.ini”

找到mysql的安装目录,打开”my.ini”文件,在[mysqld]下面添加

server-id=1 //这个id必须要保证唯一性
log-bin=mysql-bin

4.修改从数据库的”my.cnf”

/etc/mysql/my.cnf

log-bin=mysql-bin   //[不是必须]启用二进制日志
server-id=2      //此id保持唯一

5.重启两台机器的mysql服务

windows上的可以在服务中手动重启
ubuntu上的使用命令

/etc/init.d/mysql restart

6.在主数据库上查看一下状态

show master status;

+——————+———-+————–+——————+——————-+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+——————+———-+————–+——————+——————-+
| mysql-bin.000001 | 1443 | | | |
+——————+———-+————–+——————+——————-+

7.配置从数据库

change master to master_host='192.168.0.106',master_user='lxg_test',master_password='123456',master_log_file='mysql-bin.000001',master_log_pos=120;

注意: master_log_file是主数据库上查看状态中得到的File,master_log_pos是主数据库上查看状态中得到的Position ,这两个必须和上面保持一致

8.启动从数据库

在从数据中执行命令

mysql>start slave;    //启动从数据库复制功能

9.检查从数据库状态

mysql> show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.0.106
                  Master_User: lxg_test
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000001
          Read_Master_Log_Pos: 622
               Relay_Log_File: mysqld-relay-bin.000002
                Relay_Log_Pos: 283
        Relay_Master_Log_File: mysql-bin.000001
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
              Replicate_Do_DB: 
          Replicate_Ignore_DB: 
           Replicate_Do_Table: 
       Replicate_Ignore_Table: 
      Replicate_Wild_Do_Table: 
  Replicate_Wild_Ignore_Table: 
                   Last_Errno: 0
                   Last_Error: 
                 Skip_Counter: 0
          Exec_Master_Log_Pos: 622
              Relay_Log_Space: 457
              Until_Condition: None
               Until_Log_File: 
                Until_Log_Pos: 0
           Master_SSL_Allowed: No
           Master_SSL_CA_File: 
           Master_SSL_CA_Path: 
              Master_SSL_Cert: 
            Master_SSL_Cipher: 
               Master_SSL_Key: 
        Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
                Last_IO_Errno: 0
                Last_IO_Error: 
               Last_SQL_Errno: 0
               Last_SQL_Error: 
  Replicate_Ignore_Server_Ids: 
             Master_Server_Id: 1
                  Master_UUID: caf0abb0-9e06-11e4-8ea8-3c970e596be8
             Master_Info_File: /var/lib/mysql/master.info
                    SQL_Delay: 0
          SQL_Remaining_Delay: NULL
      Slave_SQL_Running_State: Slave has read all relay log; waiting for the slave I/O thread to update it
           Master_Retry_Count: 86400
                  Master_Bind: 
      Last_IO_Error_Timestamp: 
     Last_SQL_Error_Timestamp: 
               Master_SSL_Crl: 
           Master_SSL_Crlpath: 
           Retrieved_Gtid_Set: 
            Executed_Gtid_Set: 
                Auto_Position: 0
1 row in set (0.00 sec)

Slave_IO及Slave_SQL进程必须正常运行,即YES状态,否则都是错误的状态(如:其中一个NO均属错误)。
刚开始的时候Slave_IO可能会是Connecting,可以过一会再查看一次。

10.测试

在主库上新建一个数据库,新建一张表,然后插入数据,然后在从库查看一下。
注:测试的时候一定是要在主库上新建一个库,然后在新建的库里面执行后续操作,如果在已有库中新建表,从库上因为没有这个库,导致同步出错。

参考文章:http://369369.blog.51cto.com/319630/790921/

你可能感兴趣的:(MySQL)