笔者系统为 mac
,不知怎的,Mysql
居然报以下错误:mysql
ERROR 1449 (HY000): The user specified as a definer ('mysql.infoschema'@'localhost') does not exist
一时没有找到是什么操做致使的这个错误。而后通过查询,参考文章
解决了问题。sql
登陆ui
$ mysql -uroot -p12345678 $ mysql> show databases; ERROR 1449 (HY000): The user specified as a definer ('mysql.infoschema'@'localhost') does not exist
修改.net
$ mysql> SET GLOBAL innodb_fast_shutdown = 1; Query OK, 0 rows affected (0.01 sec) $ mysql> quit Bye
更新code
$ mysql_upgrade -uroot -p12345678 mysql_upgrade: [Warning] Using a password on the command line interface can be insecure. Checking if update is needed. Checking server version. Running queries to upgrade MySQL server. Upgrading system table data. Checking system database. mysql.columns_priv OK mysql.component OK …… yn.roles OK yn.users OK Upgrade process completed successfully. Checking if update is needed.
从新登陆以后,服务恢复正常。component