还在苦苦敲代码开发APP?你out啦! 试试积木搭建APP吧~

MySQL ('root'@'%') does not exist 的问题

来源:清泛原创     2016-06-28 09:33:52    人气:     我有话说( 0 人参与)

MySQL ('root'@'%') does not exist的问题:在使用mysql时出现问题: The user specified as a definer ('...

MySQL ('root'@'%') does not exist的问题:
在使用mysql时出现问题: The user specified as a definer ('root'@'%') does not exist。

一般是由于root用户对全局host无访问权限。因此只要给root用户添加一个访问权限即可。

解决办法:

登陆mysql ,执行 

mysql -u root -pPasswd  

mysql >grant all privileges on *.* to root@"%" identified by "Passwd" ; 

mysql >flush privileges;

MySQL root

注:本文为本站或本站会员原创优质内容,版权属于原作者及清泛网所有,
欢迎转载,转载时须注明版权并添加来源链接,谢谢合作! (编辑:admin)
分享到: