您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關MySQL 5.6 GTID常見錯誤的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
在測試環境搭建完基于GTID的雙主環境后,啟動數據庫報錯:
[root@localhost ~]# service mysqld start
Starting MySQL.........The server quit without updating PID[FAILED]usr/local/mysql/data/localhost.pid).
查看錯誤日志/var/log/mysqld.log,發現有如下信息:
2017-05-11 09:08:38 56355 [Note] Audit Plugin: Init completed successfully.
2017-05-11 09:08:38 56355 [ERROR] --gtid-mode=ON or UPGRADE_STEP_1 or UPGRADE_STEP_2 requires --log-bin and --log-slave-updates
2017-05-11 09:08:38 56355 [ERROR] Aborting
說明如下:
gtid_mode=ON,log_slave_updates,enforce_gtid_consistency這三個參數一定要同時在my.cnf中配置。否則在mysql.err中會出現如下的報錯
2015-02-26 17:11:08 32147 [ERROR] --gtid-mode=ON or UPGRADE_STEP_1 or UPGRADE_STEP_2 requires --log-bin and --log-slave-updates
2015-02-26 17:13:53 32570 [ERROR] --gtid-mode=ON or UPGRADE_STEP_1 requires --enforce-gtid-consistency
修改/etc/my.cnf,加入以下內容:
gtid-mode = on
log-slave-updates=ON
enforce-gtid-consistency=ON
再次啟動數據庫后,再無報錯:
[root@localhost ~]# service mysqld start
Starting MySQL..... [ OK ]
[root@localhost ~]# mysql -u mdba -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.6.27-log Source distribution
Copyright (c) 2000, 2015, 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.
查看gtid模式:
mysql> show global variables like '%gtid%';
+---------------------------------+-------+
| Variable_name | Value |
+---------------------------------+-------+
| binlog_gtid_simple_recovery | OFF |
| enforce_gtid_consistency | ON |
| gtid_executed | |
| gtid_mode | ON |
| gtid_owned | |
| gtid_purged | |
| simplified_binlog_gtid_recovery | OFF |
+---------------------------------+-------+
7 rows in set (0.00 sec)
GTID相關參數
參數 comment
gtid_executed 執行過的所有GTID
gtid_purged 丟棄掉的GTID
gtid_mode gtid模式
gtid_next session級別的變量,下一個gtid
gtid_owned 正在運行的gtid
enforce_gtid_consistency 保證GTID安全的參數
GTID復制的限制:
GTID 模式實例和非GTID模式實例是不能進行復制的,要求非常嚴格,要么都是GTID,要么都不是
gtid_mode 是只讀的,要改變狀態必須1)關閉實例、2)修改配置文件、3) 重啟實例
在同一事務中更新事務表與非事務表將導致多個GTIDs分配給同一事務
無法使用CREATE TABLE ... SELECT statements語句
無法在事務中對非事務存儲引擎進行更新
無法在事務中使用CREATE TEMPORARY TABLE
感謝各位的閱讀!關于“MySQL 5.6 GTID常見錯誤的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。