zoukankan      html  css  js  c++  java
  • 修复mysql:[ERROR] Native table ‘performance_schema’

    转: http://www.amznz.com/error-native-table-performance_schema/

    mysql数据库出现如下错误,主要是因为升级了mysql软件包,而一些数据库的表结构发生变化而无法正常运行。

    140213 16:55:47 [ERROR] Native table 'performance_schema'.'events_waits_current' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'events_waits_history' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'events_waits_history_long' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'setup_consumers' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'setup_instruments' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'setup_timers' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'performance_timers' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'threads' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'events_waits_summary_by_thread_by_event_name' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'events_waits_summary_by_instance' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'events_waits_summary_global_by_event_name' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'file_summary_by_event_name' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'file_summary_by_instance' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'mutex_instances' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'rwlock_instances' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'cond_instances' has the wrong structure
    140213 16:55:47 [ERROR] Native table 'performance_schema'.'file_instances' has the wrong structure

    修复方法很简单只需在root权限下运行如下命令即可:

    /usr/local/mysql/bin/mysql_upgrade -u root -p

    输入命令后会要求验证mysql密码,填入密码后确认如下图所示即表示修复完毕:

    mysql_upgrade

    © 原文地址: http://www.amznz.com/error-native-table-performance_schema/

  • 相关阅读:
    Sqli-labs Less-37 利用 ' 的utf-16突破mysql_real_escape_string()函数转义
    Sqli-labs Less-36 宽字节注入 绕过mysql_real_escape_string()函数转义
    闭包
    JavaScript(1)
    css和JavaScript
    解决奇怪的错误。访问的网页一直被拦截
    html网页乱码解决
    BZOJ 3676: [Apio2014]回文串 回文树 回文自动机
    BZOJ 3676: [Apio2014]回文串 后缀自动机 Manacher 倍增
    BZOJ 3238: [Ahoi2013]差异 后缀自动机 树形dp
  • 原文地址:https://www.cnblogs.com/UniqueColor/p/6817856.html
Copyright © 2011-2022 走看看