表示 进入内容 12
Displaying posts with tag: mysql_install_db (reset)
ERROR 1146(42S02):表不存在

Original post: http://anothermysqldba.blogspot.com/2013/09/error-1146-42s02-table-doesnt-exist.html

因此,一些你可能遇到過下面的錯誤安裝MySQL 5.6時:

  • ERROR 1146(42S02):表'mysql.innodb_index_stats'不存在
  • ERROR 1146(42S02):表'mysql.innodb_table_stats'不存在
  • ERROR 1146(42S02):表'mysql.slave_master_info'不存在
  • ERROR 1146(42S02):表'mysql.slave_relay_log_info'不存在
  • ERROR 1146(42S02):表'mysql.slave_worker_info'不存在

您可能會驚訝,你看到這個錯誤在一個全新的數據庫安裝。 你並不孤單。 儘管該問題是可以解決的。

最安全的做法是重新安裝mysql數據庫,通過下面的命令:mysql_install_db的

[获取更多]
[警告] .....因為用戶設置為'mysql的'早在命令行上

Original Post: http://anothermysqldba.blogspot.com/2013/05/warning-because-user-was-set-to-mysql.html

shell> scripts/mysql_install_db --basedir=/usr/local/demouser --datadir=/var/lib/demodb --user=demouser --ldata=/var/lib/demodb

Installing MySQL system tables...

[Warning] Ignoring user change to 'demouser' because the user was set to 'mysql' earlier on the command line

Installation of system tables failed ! 

[获取更多]
表示 进入内容 12