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)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • OPC服务器比较

    OPC服务器比较目前支持OPC服务器的组态软件有很多种,其中四种软件即:Intellution公司的iFIX(3.5)、GE公司的Cimplicity(6.0)、Wonderware公司的InTouch(9.5)以及Siemens公司的WinCC(6.0)应用最广、功能最强。Intellution公司和Wonderware公司是专门从事监控软件工作的,在市场占领绝大部分份额;Cimplicity和WinCC是GE

    2022年6月20日
    39
  • VB里的 dim是什么意思?[通俗易懂]

    VB里的 dim是什么意思?[通俗易懂]Dim为Dimension的缩写,后面加上所需变量的名字As为变量指定类型程序运行时,Dim语句就根据变量类型为变量分配内存空间

    2022年8月5日
    2
  • docker下修改mysql配置文件[通俗易懂]

    docker下修改mysql配置文件[通俗易懂]由于需要修改mysql的sql_mode,在命令行修改每次重启都会失效,因为修改docker下mysql的配置文件。操作系统:centos7docker版本:Dockerversion17.05.0-ce,build89658bemysql版本:5.7.181.拉取镜像dockerpullmysql:5.7.182.列出镜像[root@zk01~]#dockerimages

    2022年5月5日
    76
  • java中page的对象,page对象[通俗易懂]

    java中page的对象,page对象[通俗易懂]page对象是JSP九大内置对象之一。JSP全称JavaServerPage,是一种动态网页技术标准,以Java语言作为脚本语言。在JSP中预先定义了九个内置对象,这个九个内置对象不需要声明就可以在脚本代码和表达式中任意使用,九个内置对象分别是:request、response、session、application、out、pageContext、config、page、exception。pa…

    2022年7月27日
    10
  • JS中三种字符串连接方式及其性能比较

    JS中三种字符串连接方式及其性能比较

    2021年11月4日
    33
  • Springboot和Spring的区别?看完你就明白了

    Springboot和Spring的区别?看完你就明白了从一道面试题说起面试的时候经常会被问到,spring和springboot的区别。或者SpringMVC和Springboot的区别。其实这样的问法就不是特别合适。因为spring、springboot、springmvc他们三个在spring体系中就不在同一个维度。看一下spring的全部项目spring家族有很多项目,springboot、springframework、springcloud等。我们常用的也就是,springboot、springcloud、springsecu

    2022年6月8日
    40

发表回复

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

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