mysql 5.6.33主從+主主

1 實驗環境

# cat /etc/redhat-release 

CentOS Linux release 7.2.1511 (Core) 

A主機:master IP:192.168.1.138 MYSQL:# mysql -Vmysql  Ver 14.14 Distrib 5.6.33

B主機:slave  IP:192.168.1.9   MYSQL:# mysql -Vmysql  Ver 14.14 Distrib 5.6.33

注意:mysql數據庫的版本,兩個數據庫版本要相同,或者slave比master版本低!


2 mysql5.6.33 安裝:

1 下載mysql的rpm安裝包

[root@localhost mysql]# ls
MySQL-server-5.6.33-1.el6.x86_64.rpm
MySQL-client-5.6.33-1.el6.x86_64.rpm    
MySQL-devel-5.6.33-1.el6.x86_64.rpm

 

2 檢查MySQL及相關RPM包,是否安裝,如果有安裝,則移除(rpm –e 名稱)

[root@localhost mysql]# rpm -qa | grep -i mysql
[root@localhost mysql]# 
[root@localhost mysql]# rpm -ivh MySQL-server-5.6.33-1.el6.x86_64.rpm 
warning: MySQL-server-5.6.33-1.el6.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY
error: Failed dependencies:
net-tools is needed by MySQL-server-5.6.33-1.el6.x86_64
[root@localhost mysql]# yum -y install net-tools
[root@localhost mysql]# rpm -ivh MySQL-server-5.6.33-1.el6.x86_64.rpm
file /usr/share/mysql/charsets/swe7.xml from install of MySQL-server-5.6.33-1.el6.x86_64 conflicts with file from package mariadb-libs-1:5.5.44-2.el7.centos.x86_64
 如果報錯,就是刪除mariadb的包)
[root@localhost mysql]# yum remove mariadb-libs
[root@localhost mysql]# rpm -ivh MySQL-server-5.6.33-1.el6.x86_64.rpm 
[root@localhost mysql]# rpm -ivh MySQL-devel-5.6.33-1.el6.x86_64.rpm
[root@localhost mysql]# rpm -ivh MySQL-client-5.6.33-1.el6.x86_64.rpm 
[root@localhost mysql]# cp /usr/share/mysql/my-default.cnf /etc/my.cnf
[root@localhost mysql]# mkdir /mysqldata
[root@localhost mysql]# chown mysql:mysql /mysqldata
[root@localhost mysql]# /usr/bin/mysql_install_db
[root@localhost mysql]# cat /root/.mysql_secret 
# The random password set for the root user at Tue Mar 21 01:12:42 2017 (local time): a64DA4mpLbeCaydf (5.6安裝的默認密碼不在是空,而是隨機密碼,自己要修改)
root@localhost mysql]# /etc/init.d/mysql restart
[root@localhost mysql]# mysql -uroot -pa64DA4mpLbeCaydf
mysql> set password = password('123456'); 修改root的密碼
Query OK, 0 rows affected (0.00 sec)
mysql> exit
[root@localhost mysql]# mysql -uroot -p123456

2.1 修改數據的data目錄,配置服務器的my.cnf文件:(如果需要修改datadir,請注意SELinux和目錄是否有mysql用戶的權限)

/var/lib/mysql/               #數據庫目錄
/usr/share/mysql              #配置文件目錄
/usr/bin                     #相關命令目錄
/etc/init.d/mysql              #啓動腳本
#mkdir -p /mysql/data
#chown -R mysql:mysql  /mysql/data
#cp -ar /var/lib/mysql/* /mysql/data/
#vim /etc/my.cnf
datadir = /mysqldata/data
port = 3306
socket = /mysqldata/data/mysql.sock  
[root@localhost mysql]# /etc/init.d/mysql restart
Shutting down MySQL.. SUCCESS! 
Starting MySQL. SUCCESS! 
改了datadir和socket,重啓成功,但是連接報錯
[root@localhost mysql]# mysql -uroot -p
Enter password: 
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
[root@localhost mysql]# ss -tnlp | grep 3306
LISTEN     0      80          :::3306                    :::*                   users:(("mysqld",pid=9413,fd=10))
這個時候在配置文件中加以下配置:
[client]
socket = /mysqldata/data/mysql.sock
[root@localhost mysqldata]# /etc/init.d/mysql restart
Shutting down MySQL.. SUCCESS! 
Starting MySQL. SUCCESS!


3 在主服務器爲從服務器設置一個連接賬戶,該賬號必須授予REPLICATION SLAVE權限。

如果賬戶僅用於複製(推薦這樣做),則不需要再授予其它任何權限。

# mysql -uroot -p123456
mysql> grant replication slave on *.* to 'user'@'slave_ip' identified by '123456';
#mysql>grant file on *.* to 'user'@'slave_ip' IDENTIFIED BY 'mysql password';
mysql>flush privileges;
mysql> show  databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| apacex             |
| mysql              |
| performance_schema |
| test               |
+--------------------+


創建一個測試數據庫test1:

mysql> create database test1;
mysql> use test1;
mysql> create table users(id int NOT NULL,name VARCHAR(100) NOT NULL);
mysql> insert into users values(1,"user1");
mysql> insert into users values(2,"user3");
mysql> flush privileges;
mysql> select * from users;
+----+-------+
| id | name  |
+----+-------+
|  1 | user1 |
|  2 | user3 |
+----+-------+


3.1 編輯主配置文件my.cnf

server_id = 1  #server-id用於標識唯一的數據庫,這裏設置爲1
character_set_server = utf8 
max_connections = 3000
skip-name-resolve
slow_query_log = TRUE
slow_query_log_file = /home/db/slow.log
long_query_time = 5
log-bin = mysql-bin
binlog_format = ROW
binlog-do-db =  xxx  ##可以被從服務器複製的庫。
# binlog-ignore-db = yyy 不可以被從服務器複製的庫
innodb_file_per_table = OFF
open_files_limit = 65535
back_log = 600
max_connect_errors = 6000
sql_mode = NO_ENGINE_SUBSTITUTION
auto_increment_increment = 2
auto_increment_offset = 1
# touch /mysql/data/slow.log
# chown mysql:mysql /mysql/data/slow.log
[root@localhost data]# /etc/init.d/mysql restart
Shutting down MySQL.. SUCCESS! 
Starting MySQL. SUCCESS! 
登陸mysql,查看主的狀態;
mysql> show master status;
+------------------+----------+--------------+------------------+-------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000001 |      120 |              |                  |                   |
+------------------+----------+--------------+------------------+-------------------+


4 配置從服務器:

vim /etc/my.cnf
character_set_server = utf8
max_connections = 3000
skip-name-resolve
slow_query_log = TRUE
slow_query_log_file = /home/db/slow.log
long_query_time = 5
log-bin = mysql-bin
binlog_format = ROW
innodb_file_per_table = OFF
open_files_limit = 65535
back_log = 600
max_connect_errors = 6000
server_id = 2
sql_mode = NO_ENGINE_SUBSTITUTION
auto_increment_increment = 2
auto_increment_offset = 2
replicate-do-db = test1 要接收的庫
# /etc/init.d/mysql restart
Shutting down MySQL.. SUCCESS! 
Starting MySQL..^[[A. SUCCESS!
# mysql -uroot -p123456
change master to master_host='192.168.1.28',master_user='root',master_password='abc-123',master_log_file='mysql-bin.000001', master_log_pos=120;
mysql> start slave;  #開啓Slave
mysql> show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.1.28
                  Master_User: hm
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000004
          Read_Master_Log_Pos: 120
               Relay_Log_File: localhost-relay-bin.000013
                Relay_Log_Pos: 283
        Relay_Master_Log_File: mysql-bin.000004
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
              Replicate_Do_DB: students
          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: 120
              Relay_Log_Space: 460
              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: 71a3a3a2-0d99-11e7-b0de-000c290c49b2
             Master_Info_File: /mysql/data/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.13 sec)


5 測試:

主:

mysql> use students;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> insert into users values (3,"c");
Query OK, 1 row affected (0.01 sec)
mysql> select  * from users;
+----+------+
| id | name |
+----+------+
|  1 | a    |
|  2 | b    |
|  3 | c    |
+----+------+
3 rows in set (0.00 sec)


看從庫:

mysql> use students;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> select * from users;
+----+------+
| id | name |
+----+------+
|  1 | a    |
|  2 | b    |
|  3 | c    |
+----+------+
3 rows in set (0.00 sec)


到此爲止主從就做好了,現開始做主主了:

1 在原從服務器上授權:

mysql> grant replication slave on *.* to 'hm100'@'192.168.1.28' identified by '123456';
Query OK, 0 rows affected (0.03 sec)


1.1 編輯配置文件

binlog-do-db = students 加要同步的數據庫


1.2 重啓

# /etc/init.d/mysql restart
Shutting down MySQL... SUCCESS! 
Starting MySQL..... SUCCESS! 
mysql -uroot -p
mysql> show master status;
+------------------+----------+--------------+------------------+-------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000007 |      120 | students     |                  |                   |
+------------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)


2 在原主上添加:

vim /etc/my.cnf 
添加:
replicate-do-db = xxx 要接收的庫
# /etc/init.d/mysql restart
Shutting down MySQL... SUCCESS! 
Starting MySQL..... SUCCESS!
mysql -uroot -p
mysql> change master to master_host='192.168.1.166',master_user='hm100',master_password='abc-123',master_log_file='mysql-bin.000007', master_log_pos=120;
mysql> start slave;
mysql> show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.1.166
                  Master_User: hm100
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000007
          Read_Master_Log_Pos: 120
               Relay_Log_File: localhost-relay-bin.000004
                Relay_Log_Pos: 283
        Relay_Master_Log_File: mysql-bin.000007
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes
              Replicate_Do_DB: shudents
          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
 ......

 

 

3 測試:

在原從上添加數據:

mysql> use students;
mysql> select * from users;
+----+------+
| id | name |
+----+------+
|  1 | a    |
|  2 | b    |
|  3 | c    |
+----+------+
mysql> use students;
mysql> insert into users values (7,"g");
mysql> select * from users;
+----+------+
| id | name |
+----+------+
|  1 | a    |
|  2 | b    |
|  3 | c    |
|  7 | g    |
+----+------+



看原主

mysql> select * from users;
+----+------+
| id | name |
+----+------+
|  1 | a    |
|  2 | b    |
|  3 | c    |
|  7 | g    |
+----+------+

到此就實現了主主。


注意:

在mysql5.6之後不用指定以下,不然會出現報錯:

master-host=192.168.1.1 #Master的主機IP
master-user=root
master-password=mysql password #Master的MySQL密碼
Shutting down MySQL... SUCCESS! 
Starting MySQL... ERROR! The server quit without updating PID file (/data/mysqldb/xxx.pid)


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