MySQL-错误:1146 - Table 'performance_schema.session_variables' doesn't exist

1146 - Table 'performance_schema.session_variables' doesn't exist

一 问题出现场景

1 在Flask使用SQLAlchemy操作mysql的时候会出现

MySQL-错误:1146 - Table 'performance_schema.session_variables' doesn't exist_第1张图片

2 使用Navicat连接数据库会出现

MySQL-错误:1146 - Table 'performance_schema.session_variables' doesn't exist_第2张图片

附:连接Navicat成功的前提,否则会报10061 "Unknown error"错误

  • (1) 需要用户有足够的权限
  • (2) MySQL数据库默认不允许这些客户端工具进行连接,需要在/etc/mysql/mysql.conf.d/mysqld.cnf配置文件中的bind-address = 127.0.0.1改为:bind-address = 0.0.0.0,重启(我的是ubuntu环境)

二 解决办法

mysql_upgrade -u root -p --force  # 升级修复MySQL数据库结构错误
sudo service mysql restart  # 重启

你可能感兴趣的:(MySQL-错误:1146 - Table 'performance_schema.session_variables' doesn't exist)