mysql伺服器簡單主從配置

來源:互聯網
上載者:User

mysql伺服器的主從配置,這樣可以實現讀寫分離,也可以在主庫掛掉後從備用庫中恢複

需要兩台機器,安裝mysql,兩台機器要在相通的區域網路內

主機A: 192.168.1.100

從機B:192.168.1.101

可以有多台從機

1、先登入主機 A

mysql>GRANT REPLICATION SLAVE ON *.* TO ‘backup’@’192.168.1.101‘ IDENTIFIED BY ‘123456’;

賦予從機許可權,有多台叢機,就執行多次

2、 開啟主機A的my.cnf,輸入

server-id               = 1    #主機標示,整數
log_bin                 = /var/log/mysql/mysql-bin.log   #確保此檔案可寫
read-only              =0  #主機,讀寫都可以
binlog-do-db         =test   #需要備份資料,多個寫多行
binlog-ignore-db    =mysql #不需要備份的資料庫,多個寫多行

3、開啟從機B的my.cnf,輸入

server-id               = 2
log_bin                 = /var/log/mysql/mysql-bin.log
master-host     =192.168.1.100
master-user     =backup
master-pass     =123456
master-port     =3306
master-connect-retry=60 #如果從伺服器發現主伺服器斷掉,重新串連的時間差(秒)
replicate-do-db =test #只複製某個庫
replicate-ignore-db=mysql #不複製某個庫

4、同步資料庫

不用太費事,只把主從庫都啟動即可自動同步,如果不嫌麻煩的話可以把主庫的內容匯出成SQL,然後在從庫中運行一遍

5、先重啟主機A的mysql,再重啟從機B的mysql

6、驗證

在主機A中,mysql>show master status\G;

在從機B中,mysql>show slave status\G;

能看到大致這些內容

File: mysql-bin.000001
Position: 1374
Binlog_Do_DB: test
Binlog_Ignore_DB: mysql

可以在主機A中,做一些INSERT, UPDATE, DELETE 操作,看看主機B中,是否已經被修改

相關文章

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.