明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

設(shè)置Mysql主從服務(wù)案例

[摘要]本文主要介紹了配置Mysql主從服務(wù)實現(xiàn)實例的相關(guān)資料,需要的朋友可以參考下,希望能幫助到大家。配置Mysql主從服務(wù)實現(xiàn)實例### 配置主數(shù)據(jù)庫 my.cnfserver-id=1log-bin...
本文主要介紹了配置Mysql主從服務(wù)實現(xiàn)實例的相關(guān)資料,需要的朋友可以參考下,希望能幫助到大家。

配置Mysql主從服務(wù)實現(xiàn)實例

### 配置主數(shù)據(jù)庫 my.cnf


server-id=1
log-bin=master-bin
log-bin-index=master-bin.index

### 在主數(shù)據(jù)庫上創(chuàng)建同步賬號


create user backup;
GRANT REPLICATION SLAVE ON *.* TO 'backup'@'192.168.%.%' IDENTIFIED BY 'mysql';

### 配置從數(shù)據(jù)庫 my.cnf


server-id=2
relay-log-index=slave-relay-bin.index
relay- log=slave-relay-bin

### 重啟mysql服務(wù)


service mysqld restart

### 連接Master服務(wù)


change master to master_host='192.168.91.128',
master_port=3306,master_user='backup',master_password='mysql',
master_log_file='master-bin.000001',master_log_pos=0;

### 啟動slave服務(wù)


start slave;

### 查看Master服務(wù)狀態(tài)


SHOW MASTER STATUS;

### 查看Slave服務(wù)狀態(tài)


SHOW slave STATUS \G;

### 檢查server_id是否一樣,需要不一樣


show variables like 'server_id';

常見錯誤

錯誤: Fatal error: The slave I/O thread stops because master and slave have equal MySQL server UUIDs; these UUIDs must be different for replication to work.

解決方式: 檢查data目錄中的auto.cnf中的server-uuid=******************** 是否一樣的,要改為不一樣

相關(guān)推薦:

Mysql的主從服務(wù)器架構(gòu)配置

mysql主從服務(wù)器配置特殊問題

MySQL數(shù)據(jù)庫配置主從服務(wù)器實現(xiàn)雙機熱備實例教程

以上就是配置Mysql主從服務(wù)實例的詳細(xì)內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!


學(xué)習(xí)教程快速掌握從入門到精通的SQL知識。