MySQL主從配置總結

來源:互聯網
上載者:User

標籤:mysql   主從   

mysql主從配置總結

1.[[email protected] ~]# cat /etc/redhat-release  //版本centos6.4
CentOS release 6.4 (Final)


2.[[email protected] ~]# virsh
Welcome to virsh, the virtualization interactive terminal.

Type:  ‘help‘ for help with commands
       ‘quit‘ to quit

3.virsh # list
 Id    Name                           State
----------------------------------------------------
 1     windows2003_64                 running
 2     winxp                          running
 4     CactiEZ                        running
 11    SN01                           running //KVM虛擬機器SN01為centos6.4作業系統作為主mysql IP:192.168.200.77
 13    SN02                           running //KVM虛擬機器SN01為centos6.4作業系統作為從mysql IP: 192.168.200.78

4.virsh # console 11 //進入主mysql伺服器

5.[[email protected] mysql]# rpm -q mysql-server //mysql版本為5.1.73版本
mysql-server-5.1.73-3.el6_5.x86_64


6.[[email protected] mysql]# cat /etc/my.cnf //添加server-id和log-bin=mysql-bin
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql

server-id=77 //添加server-id不能重複這個為ip最後一位作為id
log-bin=mysql-bin //啟動bin日誌

7.[[email protected] mysql]# mysql -uroot -p123456 //進入mysql資料庫
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 28
Server version: 5.1.73-log Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

8.mysql>grant replication slave on *.* to ‘replication‘@‘192.168.200.%‘ identified by ‘123456‘;//一般不用root帳號,“%”表示所有用戶端都可能連,只要帳號,密碼正確,此處可用具體

用戶端IP代替,如192.168.200.78,加強安全。

Query OK, 0 rows affected (0.00 sec)

9.mysql> show master status; //查看主mysql的狀態記住file和position
+------------------+----------+--------------+------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+------------------+----------+--------------+------------------+
| mysql-bin.000001 |      187 |              |                  |
+------------------+----------+--------------+------------------+
1 row in set (0.00 sec)
執行完此步驟後不要再操作主伺服器MYSQL,防止主伺服器狀態值變化

10.按ctrl+]返回kvm

11.virsh # list
 Id    Name                           State
----------------------------------------------------
 1     windows2003_64                 running
 2     winxp                          running
 4     CactiEZ                        running
 11    SN01                           running
 13    SN02                           running

12.virsh # console 13 //進入SN02從mysql伺服器
Connected to domain SN02
Escape character is ^]


13.[[email protected] mysql]# mysql -uroot -p123456 //進入從mysql資料庫伺服器
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 5.1.73-log Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

14.mysql> change master to master_host=‘192.168.200.77‘,master_user=‘replication‘,master_password=‘123456‘,
master_log_file=‘mysql-bin.000001‘,master_log_pos=187;//注意不要斷開,“187”無單引號。

15.mysql> start slave; //啟動伺服器複製功能
Query OK, 0 rows affected, 1 warning (0.00 sec)


16.mysql> show slave status\G;
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.200.77 //主伺服器地址
                  Master_User: replication //授權帳戶名稱,盡量避免使用root
                  Master_Port: 3306 //資料庫連接埠,部分版本沒有此行
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000001
          Read_Master_Log_Pos: 187 //#同步讀取二進位日誌的位置,大於等於>=Exec_Master_Log_Pos
               Relay_Log_File: mysqld-relay-bin.000022
                Relay_Log_Pos: 251
        Relay_Master_Log_File: mysql-bin.000001
             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: 187
              Relay_Log_Space: 552
              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:
1 row in set (0.00 sec)

ERROR:
No query specified

註:Slave_IO及Slave_SQL進程必須正常運行,即YES狀態,否則都是錯誤的狀態(如:其中一個NO均屬錯誤)。

以上操作過程,主從伺服器配置完成。

測試

17.mysql> show databases; //查看所有資料庫
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| test               |
|              |
+--------------------+
3 rows in set (0.00 sec)

18.mysql>create database zhh; //建立資料庫zhh

19.mysql> use zhh;//進入zhh資料庫
Database changed

20.mysql> create table zhh(id int(3),name char(10));//建立zhh表
Query OK, 0 rows affected (0.06 sec)

21.mysql> insert into zhh value(01,‘zh888.blog‘);//插入01和zh888.blog值
Query OK, 1 row affected, 1 warning (0.00 sec)

22.mysql> select *from zhh;//查詢zhh表的內容
+------+------------+
| id   | name       |
+------+------------+
|    1 | zh888.blog |
+------+------------+
1 row in set (0.00 sec)

23.ctrl+]切換到kvm

24.virsh # list
 Id    Name                           State
----------------------------------------------------
 1     windows2003_64                 running
 2     winxp                          running
 4     CactiEZ                        running
 11    SN01                           running
 13    SN02                           running

25.virsh # console 13 //串連sn02從mysql伺服器
Connected to domain SN02
Escape character is ^]

26.[[email protected] mysql]# mysql -uroot -p123456 //進入從mysql資料庫

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 5.1.73-log Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

27.mysql> show databases;//查看所有mysql資料庫

+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| test               |
| zhh                |
|         |
+--------------------+
4 rows in set (0.01 sec)

28.mysql> use zhh;//進入zhh資料庫
Database changed

mysql> select *from zhh;//查詢zhh表的內容
+------+------------+
| id   | name       |
+------+------------+
|    1 | zh888.blog |
+------+------------+
1 row in set (0.00 sec)


大功告成!



本文出自 “有志者事竟成!” 部落格,請務必保留此出處http://zh888.blog.51cto.com/1684752/1600087

MySQL主從配置總結

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.