1370 (42000): grant command denied to user ''@'localhost' for routine 'test.f1'

1370 (42000): grant command denied to user ''@'localhost' for routine 'test.f1';

在调用自定义或者存储过程中遇到了error1370这个错误

第一次遇到的时候糊里糊涂使用

grant execute on function test.f1 to ''@'localhost';

flush privileges;

授予权限就解决问题了

但是我第二次遇到了同样的问题

用同样的方法也解决不了

最终发现了原因在于没有正确登录数据库

因为mysql数据库的user表里,存在用户名为空的账户即匿名账户,导致登录的时候是虽然用的是root,但实际是匿名登录的,通过错误提示里的''@'localhost'可以看出来。

解决方法为

exit;退出。

mysql -u root -p

Enter password:

显示--Welcome to the MySQL monitor. 

一切权限问题迎刃而解

参考文章

http://www.2cto.com/database/201309/241161.html

http://www.linuxidc.com/Linux/2013-05/85162.htm

你可能感兴趣的:(mysql)