MySQL error 1396_Last

MySQL error 1396_LastMySQL主备数据库切换报错1396处理方法,操作步骤如下:mysql>showslavestatus\G;***************************1.row***************************Slave_IO_State:WaitingformastertosendeventMaster_Host:196.55.3.180Mas…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

MySQL 主备数据库切换报错1396处理方法,操作步骤如下:

mysql> show slave status \G;

*************************** 1. row ***************************

Slave_IO_State: Waiting for master to send event

Master_Host: 196.55.3.180

Master_User: repl

Master_Port: 3311

Connect_Retry: 60

Master_Log_File: mysql-bin.000002

Read_Master_Log_Pos: 1674

Relay_Log_File: relay-log.000002

Relay_Log_Pos: 367

Relay_Master_Log_File: mysql-bin.000001

Slave_IO_Running: Yes

Slave_SQL_Running: No

Replicate_Do_DB:

Replicate_Ignore_DB:

Replicate_Do_Table:

Replicate_Ignore_Table:

Replicate_Wild_Do_Table:

Replicate_Wild_Ignore_Table:

Last_Errno: 1396

Last_Error: Error ‘Operation CREATE USER failed for ‘repl‘@‘%‘‘ on query. Default database: ‘‘. Query: ‘CREATE USER ‘repl‘@‘%‘ IDENTIFIED WITH ‘mysql_native_password‘ AS ‘*2813999EE1B5ABB4D8C2D12234F0649DF6A9BC19‘‘

Skip_Counter: 0

Exec_Master_Log_Pos: 154

Relay_Log_Space: 2217

Until_Condition: None

Until_Log_File:

Until_Log_Pos: 0

Master_SSL_Allowed: No

Master_SSL_CA_File:

Master_SSL_CA_Path:

Master_SSL_Cert:

Master_SSL_Cipher:

Master_SSL_Key:

Seconds_Behind_Master: NULL

Master_SSL_Verify_Server_Cert: No

Last_IO_Errno: 0

Last_IO_Error:

Last_SQL_Errno: 1396

Last_SQL_Error: Error ‘Operation CREATE USER failed for ‘repl‘@‘%‘‘ on query. Default database: ‘‘. Query: ‘CREATE USER ‘repl‘@‘%‘ IDENTIFIED WITH ‘mysql_native_password‘ AS ‘*2813999EE1B5ABB4D8C2D12234F0649DF6A9BC19‘‘

Replicate_Ignore_Server_Ids:

Master_Server_Id: 10003

Master_UUID: 84aa2159-14f8-11ea-bc00-00505687741b

Master_Info_File: mysql.slave_master_info

SQL_Delay: 0

SQL_Remaining_Delay: NULL

Slave_SQL_Running_State:

Master_Retry_Count: 86400

Master_Bind:

Last_IO_Error_Timestamp:

Last_SQL_Error_Timestamp: 191204 19:51:57

Master_SSL_Crl:

Master_SSL_Crlpath:

Retrieved_Gtid_Set: 1b4e1296-14f7-11ea-8332-005056873bbd:1-2,

84aa2159-14f8-11ea-bc00-00505687741b:1

Executed_Gtid_Set: 183c6bb2-5f65-11e9-b3cf-0050568745fc:1-8807

Auto_Position: 1

Replicate_Rewrite_DB:

Channel_Name:

Master_TLS_Version:

1 row in set (0.00 sec)

ERROR:

No query specified

mysql> show master status;

+——————+———-+————–+——————+———————————————+

| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |

+——————+———-+————–+——————+———————————————+

| mysql-bin.000006 | 5719971 | | | 183c6bb2-5f65-11e9-b3cf-0050568745fc:1-8807 |

+——————+———-+————–+——————+———————————————+

1 row in set (0.00 sec)

mysql> select * from performance_schema.replication_applier_status_by_worker where LAST_ERROR_NUMBER=1396;

+————–+———–+———–+—————+—————————————-+——————-+————————————————————————————————————————————————————————————————————+———————-+

| CHANNEL_NAME | WORKER_ID | THREAD_ID | SERVICE_STATE | LAST_SEEN_TRANSACTION | LAST_ERROR_NUMBER | LAST_ERROR_MESSAGE | LAST_ERROR_TIMESTAMP |

+————–+———–+———–+—————+—————————————-+——————-+————————————————————————————————————————————————————————————————————+———————-+

| | 0 | NULL | OFF | 1b4e1296-14f7-11ea-8332-005056873bbd:1 | 1396 | Error ‘Operation CREATE USER failed for ‘repl‘@‘%‘‘ on query. Default database: ‘‘. Query: ‘CREATE USER ‘repl‘@‘%‘ IDENTIFIED WITH ‘mysql_native_password‘ AS ‘*2813999EE1B5ABB4D8C2D12234F0649DF6A9BC19‘‘ | 2019-12-04 20:02:13 |

+————–+———–+———–+—————+—————————————-+——————-+————————————————————————————————————————————————————————————————————+———————-+

1 row in set (0.00 sec)

mysql> stop slave;

Query OK, 0 rows affected (0.00 sec)

mysql> set @@session.gtid_next=‘1b4e1296-14f7-11ea-8332-005056873bbd:1‘;

Query OK, 0 rows affected (0.00 sec)

mysql> begin;

Query OK, 0 rows affected (0.00 sec)

mysql> commit;

Query OK, 0 rows affected (0.00 sec)

mysql> set @@session.gtid_next=automatic;

Query OK, 0 rows affected (0.00 sec)

mysql> start slave;

Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> show slave status\G;

*************************** 1. row ***************************

Slave_IO_State: Waiting for master to send event

Master_Host: 196.55.3.180

Master_User: repl

Master_Port: 3311

Connect_Retry: 60

Master_Log_File: mysql-bin.000002

Read_Master_Log_Pos: 1674

Relay_Log_File: relay-log.000005

Relay_Log_Pos: 494

Relay_Master_Log_File: mysql-bin.000002

Slave_IO_Running: Yes

Slave_SQL_Running: Yes

Replicate_Do_DB:

Replicate_Ignore_DB:

Replicate_Do_Table:

Replicate_Ignore_Table:

Replicate_Wild_Do_Table:

Replicate_Wild_Ignore_Table:

Last_Errno: 0

Last_Error:

Skip_Counter: 0

Exec_Master_Log_Pos: 1674

Relay_Log_Space: 1154

Until_Condition: None

Until_Log_File:

Until_Log_Pos: 0

Master_SSL_Allowed: No

Master_SSL_CA_File:

Master_SSL_CA_Path:

Master_SSL_Cert:

Master_SSL_Cipher:

Master_SSL_Key:

Seconds_Behind_Master: 0

Master_SSL_Verify_Server_Cert: No

Last_IO_Errno: 0

Last_IO_Error:

Last_SQL_Errno: 0

Last_SQL_Error:

Replicate_Ignore_Server_Ids:

Master_Server_Id: 10003

Master_UUID: 84aa2159-14f8-11ea-bc00-00505687741b

Master_Info_File: mysql.slave_master_info

SQL_Delay: 0

SQL_Remaining_Delay: NULL

Slave_SQL_Running_State: Slave has read all relay log; waiting for more updates

Master_Retry_Count: 86400

Master_Bind:

Last_IO_Error_Timestamp:

Last_SQL_Error_Timestamp:

Master_SSL_Crl:

Master_SSL_Crlpath:

Retrieved_Gtid_Set: 1b4e1296-14f7-11ea-8332-005056873bbd:1-2,

84aa2159-14f8-11ea-bc00-00505687741b:1

Executed_Gtid_Set: 183c6bb2-5f65-11e9-b3cf-0050568745fc:1-8807,

1b4e1296-14f7-11ea-8332-005056873bbd:1-2,

84aa2159-14f8-11ea-bc00-00505687741b:1

Auto_Position: 1

Replicate_Rewrite_DB:

Channel_Name:

Master_TLS_Version:

1 row in set (0.00 sec)

ERROR:

No query specified

mysql>

MySQL Last_Errno: 1396

标签:操作   until   ide   timestamp   pass   exec   RKE   fail   user

本条技术文章来源于互联网,如果无意侵犯您的权益请点击此处反馈版权投诉

本文系统来源:https://blog.51cto.com/roidba/2456138

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/169935.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • ckfinder的使用及了解config.xml的配置

    ckfinder的使用及了解config.xml的配置ckfinder的使用,根据官网向导(CKFinder_2.x/Developers_Guide)自己写的笔记1、将ckfinder_java_2.4.3\CKFinder-Java-2.4.3\ckfinder目录放到根目录下面,WEB-INF/lib中的jar文件全部放到项目中的lib下面2、将config.xml放到WEB-INF目录下面3、修改config.xml文件下的配置    &l…

    2025年7月4日
    2
  • 无人机数车–Drone-based Object Counting by Spatially Regularized Regional Proposal Network[通俗易懂]

    无人机数车–Drone-based Object Counting by Spatially Regularized Regional Proposal Network[通俗易懂]Drone-basedObjectCountingbySpatiallyRegularizedRegionalProposalNetworkICCV2017数据库:https://lafi.github.io/LPN/本文主要使用CNN网络处理无人机拍摄的视频,同时完成对图像中的车辆检测和计数,新建了一个用无人机拍摄停车场的数据库CARPK,含有近9万辆车下面是一个示意

    2022年8月15日
    6
  • 上海java培训哪家教育机构比较好_上海it培训机构排名前十

    上海java培训哪家教育机构比较好_上海it培训机构排名前十学习Java编程不在是校内学生们的专利了,随着职场上竞争越来越激烈,毫无基础的或想要转行的求职者对于学习Java的积极性也是越来越高,因此,市面上涌现了大批的成人Java培训机构,为了不让大家纠结,小编花费了一周时间给大家专门整理了上海Java培训机构排名榜单,主要从口碑,师资,专一性,就业率等多方面得出的上海Java培训机构排名,仅供正在选择Java培训机构的小伙们参考。1.上海动力节点评价:动力节点大家学Java的话肯定也都听说过,单科教学,一直是秉承着从学员角度,全心全意保障学员利益.

    2022年10月3日
    2
  • pycharm2021激活码(JetBrains全家桶)

    (pycharm2021激活码)本文适用于JetBrains家族所有ide,包括IntelliJidea,phpstorm,webstorm,pycharm,datagrip等。IntelliJ2021最新激活注册码,破解教程可免费永久激活,亲测有效,下面是详细链接哦~https://javaforall.net/100143.html…

    2022年3月27日
    141
  • 在 IT 外包公司工作有哪些优势和弊端?

    在 IT 外包公司工作有哪些优势和弊端?看外包公司的性质,有的是外包人力,有的是承接外包项目在自己公司做,有的是承接项目在外包公司做,也有的公司上面这几项同时做,同时也可能开发自己的产品。对用人单位来讲,短期看我喜欢外包人力,因为能解决公司人力紧缺的问题,同时外包人员和项目组成员配合更紧密,对项目出活有好处。我自己的亲身体会是,外包公司派过来的人一般要比自己的员工更努力,不挑活,他们希望通过好好表现,将来可以留在外派公司里。长期来看,我…

    2022年5月12日
    47
  • cpld和fpga的优缺点

    cpld和fpga的优缺点 FPGA是一种高密度的可编程逻辑器件,自从Xilinx公司1985年推出第一片FPGA以来,FPGA的集成密度和性能提高很快,其集成密度最高达500万门/片以上,系统性能可达200MHz。由于FPGA器件集成度高,方便易用,开发和上市周期短,在数字设计和电子生产中得到迅速普及和应用,并一度在高密度的可编程逻辑器件领域中独占鳌头。 CPLD是由 GAL发展起来的 ,其主体结构仍是与或阵列 ,自从

    2022年5月4日
    69

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号