Mysql Error:The user specified as a definer (‘mysql.infoschema’@’localhost’) does not exist’

当初在centOS7上安装mysql时,没有设置好,直接就默认安装了5.7版本,后来要使用workbench备份数据库才发现问题。所以就将版本升级(MySQL 5.7 to MySQL 8.0)。但尝试进行连接的时候就会报这个错误。

解决办法:

  • [原文地址:]https://www.xiaocaicai.com/2018/05/mysql-errorthe-user-specified-as-a-definer-mysql-infoschemalocalhost-does-not-exist-when-trying-to-dump-tablespaces/

docker exec -it mysql bash
mysql -u root -p
mysql> SET GLOBAL innodb_fast_shutdown = 1;
mysql_upgrade -u root -p

你可能感兴趣的:(技术)