mysql提示The user specified as a definer ('root'@'%') does not exist
发布:smiling 来源: PHP粉丝网 添加日期:2015-04-18 14:08:32 浏览: 评论:0
如果你的mysql提示The user specified as a definer ('root'@'%') does not exist错误这个肯定是授权问题了,我们只要简单的处理一下即可。
重装了mysql,项目运行遇到该异常,记录一下解决的办法:
1、登录mysql
2、执行赋权限操作,然后刷新权限.
mysql >grant all privileges on *.* to root@"%" identified by "Passwd" ;
mysql >flush privileges;
其实这种问题相对来说见得比较少了,因为mysql安装之后root权限就比较高了.
Tags: specified definer does
- 上一篇:mysql日志文件清理与关闭
- 下一篇:mysql中UNION进行多表查询的注意事项
相关文章
- ·mysql保存查询数据提示:specified twice错误解决办法(2014-10-08)
- ·Mysql出现Field * doesn't have a default value(2014-10-02)
- ·MySQL无法启动:Table mysql.host doesn t exist(2014-10-09)
- ·mysql中FUNCTION xxx.LEN does not exist错误(2014-10-12)
- ·mysql提示service mysql3306 does not support chkconfig错误(2015-04-20)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)