Mysql:The user specified as a definer (‘root‘@‘%‘) does not exist 的解决办法
2022/9/18 2:16:25
本文主要是介绍Mysql:The user specified as a definer (‘root‘@‘%‘) does not exist 的解决办法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Mysql5+处理办法:
mysql -hlocalhost -uroot -p
grant all privileges on *.* to root@"%" identified by ".";
flush privileges;
Mysql8+处理办法:
mysql -hlocalhost -uroot -p
grant all privileges on *.* to 'root'@'%' with grant option;
flush privileges;
如果没有'root'@'%' 用户。mysql安装的时候默认的root是root@localhost
所以授权之前还得新建一个用户。
mysql >create user 'root'@'%' identified by 'root';
这篇关于Mysql:The user specified as a definer (‘root‘@‘%‘) does not exist 的解决办法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-09-15一文看完MySQL 9.0新特性!
- 2024-09-10MySQL分库分表教程:入门级解决方案与实践
- 2024-09-10MySQL教程:初学者的入门指南
- 2024-09-10MySQL教程:从零开始入门的步骤与实践
- 2024-09-10MySQL慢查询教程:轻松掌握优化技巧
- 2024-09-10MySQL慢查询教程:快速提升数据库性能的入门指南
- 2024-08-27mysql ddl常用的方法和语句-icode9专业技术文章分享
- 2024-08-13MySQL入门:轻松掌握数据库基础操作与技巧
- 2024-08-12Seata和Mysql存储演示学习入门:初级开发者实战指南
- 2024-08-10从 MySQL 迁移到 TiDB:使用 SQL-Replay 工具进行真实线上流量回放测试 SOP