Mysql之主從複製

節點一

修改配置文件設置唯一ID開起二進制日誌

[root@node1 ~]# vim /etc/my.cnf	增加以下內容
	[mysqld]
	log-bin=master_bin	開起二進制日誌
	server_id=1		給主節點一個唯一的ID號
	innodb_file_per_table=on	innodb開起獨立表空間
	skip_name_resolve=on	開啓跳過主機名反解

啓動服務創建有遠程複製權限的賬戶

[root@node1 ~]# service mariadb start
[root@node1 ~]# mysql
MariaDB [(none)]> show global variables like '%log%';	查看二進制日誌log_bin是否開啓了
MariaDB [(none)]> show global variables like '%server%';	查看DI號是否爲1
MariaDB [(none)]> show master logs;	查看主節點二進制日誌的位置,從節點從主節點最後一個日誌的位置開始複製
MariaDB [(none)]> grant replication slave,replication client on *.* to 'copy'@'192.168.%.%' identified by 'passwd';		創建並授權一個遠程複製賬號copy密碼爲passwd
MariaDB [(none)]> flush privileges;	刷新用戶權限

節點二

修改配置文件設置唯一ID開起中繼日誌

[root@node2 ~]# vim /etc/my.cnf
	relay_log=relay_log	開起中繼日誌
	relay-log-index=relay-log.index	
	server_id=2		同樣的也需要設置唯一的ID號
	innodb_file_per_table=on
	skip_name_resolve=on

[root@node2 ~]# service mariadb start
[root@node2 ~]# mysql
MariaDB [(none)]> show global variables like '%log%';	查看中繼日誌relay_log是否開起
MariaDB [(none)]> show global variables like '%server%';	查看ID號是否爲2
主節點爲192.168.1.107,遠程複製賬號爲copy,密碼爲passwd,複製二進制日誌的起始位置爲000003的245處
MariaDB [(none)]> change master to master_host='192.168.1.107',master_user='copy',master_password='passwd',master_log_file='master_bin.000003',master_log_pos=245;
MariaDB [(none)]> start slave;	啓動從節點複製線程


MariaDB [(none)]> show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.1.107
                  Master_User: copy
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: master_bin.000003
          Read_Master_Log_Pos: 491
               Relay_Log_File: relay_log.000003
                Relay_Log_Pos: 776
        Relay_Master_Log_File: master_bin.000003
             Slave_IO_Running: Yes	這兩項必須爲yes
            Slave_SQL_Running: Yes	這兩項必須爲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: 491
              Relay_Log_Space: 1064
              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
1 row in set (0.00 sec)

注意

如果Slave_IO_Running不爲yes的解決辦法

如:ERROR 1201 (HY000)

MariaDB [(none)]> slave stop;	停止從節點
MariaDB [(none)]> reset slave;	重新設置從節點 查找設置有問題的地方重新給從節點授權

MariaDB [(none)]> change master to master_host='192.168.1.107',master_user='copy',master_password='passwd',master_log_file='master_bin.000003',master_log_pos=245;
MariaDB [(none)]> start slave;	啓動從節點
MariaDB [(none)]> show slave status\G;	查看狀態

注意從節點上一定不能進行寫操作

驗證

主節點

MariaDB [(none)]> create database msdb;
MariaDB [msdb]> create table xx (id int(4) not null auto_increment,name varchar(30) not null,primary key(id)) engine=innodb charset=utf8;
MariaDB [msdb]> insert into xx (id,name) values (1,'king');

從節點

MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| msdb               |
| mysql              |
| performance_schema |
| test               |
+--------------------+
MariaDB [(none)]> use msdb;
MariaDB [msdb]> show tables;
+----------------+
| Tables_in_msdb |
+----------------+
| xx             |
+----------------+
MariaDB [msdb]> select * from xx;
+----+------+
| id | name |
+----+------+
|  1 | king |
+----+------+


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章