修复 MySQL 数据库结构错误 – 升级[转]

jerry mysql 2015年11月23日 收藏

不知道是不是每次更新 MySQL 软件之后都需要执行数据库升级指令?在我进行过的几次软件升级之后,总会在 MySQL 的日志中见到“[ERROR] Missing system table mysql.proxies_priv; please run mysql_upgrade to create it”之类的错误。虽然这个错误修复起来很简单,却不容易引起注意。

1. 错误描述

我在好几次见到这样的错误提示之后才决定好好看看到底写了些什么。因为网站运行很正常,就心想应该不怎么重要吧。错误提示大致内容如下(已将前导的日期时间略去):

  1. [ERROR] Missing system table mysql.proxies_priv; please run mysql_upgrade to create it
  2. [ERROR] Native table 'performance_schema'.'events_waits_current' has the wrong structure
  3. [ERROR] Native table 'performance_schema'.'events_waits_history' has the wrong structure
  4. [ERROR] Native table 'performance_schema'.'events_waits_history_long' has the wrong structure
  5. [ERROR] Native table 'performance_schema'.'setup_consumers' has the wrong structure
  6. [ERROR] Native table 'performance_schema'.'setup_instruments' has the wrong structure
  7. [ERROR] Native table 'performance_schema'.'setup_timers' has the wrong structure
  8. [ERROR] Native table 'performance_schema'.'performance_timers' has the wrong structure
  9. [ERROR] Native table 'performance_schema'.'threads' has the wrong structure
  10. [ERROR] Native table 'performance_schema'.'events_waits_summary_by_thread_by_event_name' has the wrong structure
  11. [ERROR] Native table 'performance_schema'.'events_waits_summary_by_instance' has the wrong structure
  12. [ERROR] Native table 'performance_schema'.'events_waits_summary_global_by_event_name' has the wrong structure
  13. [ERROR] Native table 'performance_schema'.'file_summary_by_event_name' has the wrong structure
  14. [ERROR] Native table 'performance_schema'.'file_summary_by_instance' has the wrong structure
  15. [ERROR] Native table 'performance_schema'.'mutex_instances' has the wrong structure
  16. [ERROR] Native table 'performance_schema'.'rwlock_instances' has the wrong structure
  17. [ERROR] Native table 'performance_schema'.'cond_instances' has the wrong structure
  18. [ERROR] Native table 'performance_schema'.'file_instances' has the wrong structure
  19. [Note] Event Scheduler: Loaded 0 events
  20. [Note] /usr/libexec/mysqld: ready for connections.
  21. Version: '5.5.20-log' socket: '/var/lib/mysql/mysql.sock' port: 0

有时候可能还会多点儿如下内容:

  1. [ERROR] Incorrect definition of table mysql.proc: expected column 'comment' at position 15 to have type text, found type char(64).

一般看到结尾提示个 ready for connections 一般也就没心思去看前面都提示了什么东西了。我也是有一次在 x86_64 位 CentOS 中的 MySQL 日志中见到了多出来的这个 ERROR 信息才决定好好看看的前面的错误提示的。

可是见到错误提示句子结构都差不多就没有仔细往前翻,所以我开始还重新安装了一遍 MySQL 软件包。后来才看到每次执行

  1. service mysql restart

重起 MySQL服务的时候都会出现这样的错误提示。然后该错误提示开头还说了,让执行

  1. mysql_upgrade

指令来修复。才恍然大悟,估计是升级了 MySQL 的软件包,管理数据库的某些表结构发生了变化,所以还需要升级数据库。

2. 修复

需要按照如下的格式在 Linux 的 —— 而不是 MySQL 的 —— 命令提示符下运行

  1. mysql_upgrade -u root -p

然后根据提示输入 mysql 的 root 帐户密码,修复过程就可自动运行。此时会有如下形式的提示信息输出:

  1. mysql_upgrade -u root -p
  2. Enter password:
  3. Looking for 'mysql' as: mysql
  4. Looking for 'mysqlcheck' as: mysqlcheck
  5. Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/var/lib/mysql/mysql.sock'
  6. Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/var/lib/mysql/mysql.sock'
  7. wp_commentmeta OK
  8. wp_comments OK
  9. wp_links OK
  10. wp_options OK
  11. wp_postmeta OK
  12. wp_posts OK
  13. wp_term_relationships OK
  14. wp_term_taxonomy OK
  15. wp_terms OK
  16. wp_usermeta OK
  17. wp_users OK
  18. mysql.columns_priv OK
  19. mysql.db OK
  20. mysql.event OK
  21. mysql.func OK
  22. mysql.general_log OK
  23. mysql.help_category OK
  24. mysql.help_keyword OK
  25. mysql.help_relation OK
  26. mysql.help_topic OK
  27. mysql.host OK
  28. mysql.ndb_binlog_index OK
  29. mysql.plugin OK
  30. mysql.proc OK
  31. mysql.procs_priv OK
  32. mysql.servers OK
  33. mysql.slow_log OK
  34. mysql.tables_priv OK
  35. mysql.time_zone OK
  36. mysql.time_zone_leap_second OK
  37. mysql.time_zone_name OK
  38. mysql.time_zone_transition OK
  39. mysql.time_zone_transition_type OK
  40. mysql.user OK
  41. Running 'mysql_fix_privilege_tables'... OK

看来每次在 Linux 中升级了 MySQL 软件包之后都需要进行类似的数据库升级操作。