首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > Ruby Rails >

grant all privileges 给mysql受权时出现ERROR 1290

2012-07-04 
grant all privileges 给mysql授权时出现ERROR 1290在用grant all privileges on *.* to root@192.168.0.3

grant all privileges 给mysql授权时出现ERROR 1290
在用grant all privileges on *.* to root@192.168.0.3 identified by "123" 给mysql数据库,作远程访问授权时,出现错误:
ERROR 1290 (HY000):The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement.
其解决办法如下:
呵呵:flush privileges; 即可。
再用grant all 命令。

热点排行