营口门户网站建设,网站域名到期怎么办,海城网站制作,网站开发的框架笔者系统为 mac #xff0c;不知怎的#xff0c;Mysql 竟然报如下错误#xff1a;ERROR 1449 (HY000): The user specified as a definer (mysql.infoschemalocalhost) does not exist一时没有找到是什么操作导致的这个错误。然后经过查询#xff0c;参考文章解决了问题。登…笔者系统为 mac 不知怎的Mysql 竟然报如下错误ERROR 1449 (HY000): The user specified as a definer (mysql.infoschemalocalhost) does not exist一时没有找到是什么操作导致的这个错误。然后经过查询参考文章解决了问题。登录$ mysql -uroot -p12345678$ mysql show databases;ERROR 1449 (HY000): The user specified as a definer (mysql.infoschemalocalhost) does not exist修改$ mysql SET GLOBAL innodb_fast_shutdown 1;Query OK, 0 rows affected (0.01 sec)$ mysql quitBye更新$ mysql_upgrade -uroot -p12345678mysql_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 OKmysql.component OK……yn.roles OKyn.users OKUpgrade process completed successfully.Checking if update is needed.重新登录之后服务恢复正常。