真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

MySQL5.5主主復(fù)制搭建過程是怎樣的-創(chuàng)新互聯(lián)

MySQL 5.5 主主復(fù)制搭建過程是怎樣的,相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。

站在用戶的角度思考問題,與客戶深入溝通,找到鄂城網(wǎng)站設(shè)計(jì)與鄂城網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:成都做網(wǎng)站、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名與空間、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋鄂城地區(qū)。

--節(jié)點(diǎn)1 IP 192.168.78.141  PORT 3306
--節(jié)點(diǎn)2 IP 192.168.78.137  PORT 5505

--配置節(jié)點(diǎn)1到節(jié)點(diǎn)2的復(fù)制
--編輯節(jié)點(diǎn)1的配置文件
[root@localhost install]# vim /etc/my.cnf
# Log
server-id = 100
log-bin = /log/binlog/mysql-bin

--在節(jié)點(diǎn)2安裝好MySQL軟件,安裝流程可以參考源碼安裝文章
http://blog.itpub.net/26506993/viewspace-2072859/

--在節(jié)點(diǎn)1,使用Xtrabackup創(chuàng)建完整備份
關(guān)于Xtrabackup,可參考
http://blog.itpub.net/26506993/viewspace-2087734/
http://blog.itpub.net/26506993/viewspace-2088737/

[root@localhost backup]# /install/percona/percona-xtrabackup-2.4.2-Linux-x86_64/bin/innobackupex  --defaults-file=/etc/my.cnf --stream=tar /tmp --user system --password 'Mysql#2015' | gzip -> 
/backup/xtra/xtra_fullbackup_20160501.tar.gz

--拷貝備份到節(jié)點(diǎn)2
[root@localhost backup]# scp /backup/xtra/xtra_fullbackup_20160501.tar.gz  root@192.168.78.137:/backup/20160501

解壓備份到數(shù)據(jù)文件目錄
[root@localhost 5505]# tar xivfz xtra_fullbackup_20160501.tar.gz -C /mysql_data/5505

在節(jié)點(diǎn)2上面需要安裝Xtraback
--使用Xtrabackup準(zhǔn)備數(shù)據(jù)、應(yīng)用日志,使數(shù)據(jù)文件達(dá)到一致性的狀態(tài)
[root@localhost bin]# ./innobackupex --defaults-file=/mysql_data/cnf/my.cnf  --apply-log /mysql_data/5505
.....
InnoDB: Doing recovery: scanned up to log sequence number 68405269 (0%)
InnoDB: Doing recovery: scanned up to log sequence number 68405269 (0%)
InnoDB: Database was not shutdown normally!
InnoDB: Starting crash recovery.
InnoDB: xtrabackup: Last MySQL binlog file position 414, file name /log/binlog/mysql-bin.000012
InnoDB: Removed temporary tablespace data file: "ibtmp1"
InnoDB: Creating shared tablespace for temporary tables
InnoDB: Setting file './ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
InnoDB: File './ibtmp1' size is now 12 MB.
InnoDB: 96 redo rollback segment(s) found. 1 redo rollback segment(s) are active.
InnoDB: 32 non-redo rollback segment(s) are active.
InnoDB: 5.7.11 started; log sequence number 68405269
xtrabackup: starting shutdown with innodb_fast_shutdown = 1
InnoDB: FTS optimize thread exiting.
InnoDB: Starting shutdown...
InnoDB: Shutdown completed; log sequence number 68405621
160430 23:51:25 completed OK!

--在節(jié)點(diǎn)1數(shù)據(jù)庫上面創(chuàng)建復(fù)制專用賬戶
mysql> grant replication slave on *.* to 'repl'@'192.168.78.%' identified by 'Mysql#2015';
Query OK, 0 rows affected (0.04 sec)

--配置節(jié)點(diǎn)2的配置文件
[root@localhost 5505]# vim /mysql_data/cnf/my.cnf
# Log
server-id = 200
log-bin = /mysql_log/binlog/mysql-bin
relay-log = /mysql_log/binlog/product-relay-bin
relay-log-index = /mysql_log/binlog/product-relay-index
binlog_cache_size = 32M
max_binlog_cache_size = 512M
max_binlog_size = 512M
binlog_format = MIXED

--啟動(dòng)節(jié)點(diǎn)2的Mysql服務(wù)
[root@localhost bin]# /data/bin/mysqld_safe --defaults-file=/mysql_data/cnf/my.cnf &

--配置Slave節(jié)點(diǎn)復(fù)制環(huán)境
查詢Slave節(jié)點(diǎn)連接Master節(jié)點(diǎn)的二進(jìn)制文件和位置
使用Xtrabackup備份時(shí),在xtrabackup_binlog_info文件中會(huì)保存這部分信息
[root@localhost 5505]# more xtrabackup_binlog_info
mysql-bin.000012 414

--在節(jié)點(diǎn)2執(zhí)行CHANGE MASTER語句
mysql> change master to
    -> master_host='192.168.78.141',
    -> master_port=3306,
    -> master_user='repl',
    -> master_password='Mysql#2015',
    -> master_log_file='mysql-bin.000012',
    -> master_log_pos=414;
Query OK, 0 rows affected (0.13 sec)

--啟動(dòng)應(yīng)用線程
mysql> start slave;

--查看同步狀態(tài)
mysql> show slave status\G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.78.141
                  Master_User: repl
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000013
          Read_Master_Log_Pos: 341
               Relay_Log_File: product-relay-bin.000003
                Relay_Log_Pos: 487
        Relay_Master_Log_File: mysql-bin.000013
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes

--搭建節(jié)點(diǎn)2到節(jié)點(diǎn)1的復(fù)制
--在節(jié)店1的配置文件中,增加中繼日志的設(shè)置
[root@localhost log]# vim /etc/my.cnf
relay-log = /log/binlog/product-relay-bin
relay-log-index = /log/binlog/product-relay-index

--重啟節(jié)點(diǎn)1的數(shù)據(jù)庫
[root@localhost tmp]# /software/bin/mysqladmin -usystem -p'system' shutdown
160512 02:47:54 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
[1]+  Done                    /software/bin/mysqld_safe --defaults-file=/etc/my.cnf  (wd: ~)
(wd now: /tmp)
[root@localhost tmp]# /software/bin/mysqld_safe --defaults-file=/etc/my.cnf &
[1] 40246
[root@localhost tmp]# 160512 02:48:13 mysqld_safe Logging to '/log/err.log'.
160512 02:48:13 mysqld_safe Starting mysqld daemon with databases from /data

mysql> show variables like 'relay_log%';
+-----------------------+---------------------------------+
| Variable_name         | Value                           |
+-----------------------+---------------------------------+
| relay_log             | /log/binlog/product-relay-bin   |
| relay_log_index       | /log/binlog/product-relay-index |
| relay_log_info_file   | relay-log.info                  |
| relay_log_purge       | ON                              |
| relay_log_recovery    | OFF                             |
| relay_log_space_limit | 0                               |
+-----------------------+---------------------------------+
6 rows in set (0.00 sec)

--在節(jié)點(diǎn)1上面增加全局只讀鎖,如果應(yīng)用只連接到一個(gè)節(jié)點(diǎn),如節(jié)點(diǎn)1,這一步可以忽略
mysql> flush tables with read lock;
Query OK, 0 rows affected (0.00 sec)

--查看節(jié)點(diǎn)2當(dāng)前的日志名稱和位置,用于下面在節(jié)點(diǎn)1的change master to命令
mysql> show master status;
+------------------+----------+--------------+------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+------------------+----------+--------------+------------------+
| mysql-bin.000006 | 14078491 |              |                  |
+------------------+----------+--------------+------------------+
1 row in set (0.00 sec)

--在節(jié)點(diǎn)1執(zhí)行CHANGE MASTER語句
mysql> change master to
    -> master_host='192.168.78.137',
    -> master_port=5505,
    -> master_user='repl',
    -> master_password='Mysql#2015',
    -> master_log_file='mysql-bin.000006',
    -> master_log_pos=14078491;
Query OK, 0 rows affected (0.13 sec)

--啟動(dòng)應(yīng)用線程
mysql> start slave;

--節(jié)點(diǎn)1釋放全局只讀鎖
mysql> unlock tables;
Query OK, 0 rows affected (0.00 sec)

--查看同步狀態(tài)
mysql> show slave status\G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.78.137
                  Master_User: repl
                  Master_Port: 5505
                Connect_Retry: 60
              Master_Log_File: mysql-bin.000006
          Read_Master_Log_Pos: 14078491
               Relay_Log_File: product-relay-bin.000002
                Relay_Log_Pos: 253
        Relay_Master_Log_File: mysql-bin.000006
             Slave_IO_Running: Yes
            Slave_SQL_Running: Yes

在兩個(gè)節(jié)點(diǎn)的配置文件中增加序列的相關(guān)參數(shù),以避免生成的序列相同而產(chǎn)生沖突
--節(jié)點(diǎn)1

節(jié)點(diǎn)1上序列從1開始,增長值為2,即為奇數(shù),如1、3、5

## set this to server-id value

auto_increment_offset = 1

## set this to the number of mysql servers

auto_increment_increment = 2


--節(jié)點(diǎn)2
節(jié)點(diǎn)2上序列從2開始,增長值為2,即為奇數(shù),如2、4、6

## set this to server-id value

auto_increment_offset = 2

## set this to the number of mysql servers

auto_increment_increment = 2

看完上述內(nèi)容,你們掌握MySQL 5.5 主主復(fù)制搭建過程是怎樣的的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道,感謝各位的閱讀!


網(wǎng)頁題目:MySQL5.5主主復(fù)制搭建過程是怎樣的-創(chuàng)新互聯(lián)
轉(zhuǎn)載來源:http://weahome.cn/article/dpjjgg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部