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


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/15498/viewspace-2138880/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/15498/viewspace-2138880/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值