码迷,mamicode.com
首页 > 数据库 > 详细

mysql错误:The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement解决方法

时间:2017-06-13 00:10:53      阅读:955      评论:0      收藏:0      [点我收藏+]

标签:track   article   --   href   参考   数据   localhost   开发者   oca   

Mysql关系型数据库管理系统

MySQL是一个开放源码的小型关联式数据库管理系统,开发者为瑞典MySQL AB公司。MySQL被广泛地应用在Internet上的中小型网站中。由于其体积小、速度快、总体拥有成本低,尤其是开放源码这一特点,许多中小型网站为了降低网站总体拥有成本而选择了MySQL作为网站数据库。


本文为大家讲解的是mysql错误:The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement解决方法,感兴趣的同学参考下。

错误描述:

mysql> grant all on cactidb.* to dbuser@‘localhost‘ identified by ‘123‘;

ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement

解决方法:

先刷新一下权限表。

mysql> flush privileges;

Query OK, 0 rows affected (0.01 sec)

mysql> grant all on cactidb.* to dbuser@‘localhost‘ identified by ‘123‘;

Query OK, 0 rows affected (0.00 sec)

mysql错误:The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement解决方法

标签:track   article   --   href   参考   数据   localhost   开发者   oca   

原文地址:http://www.cnblogs.com/qianzf/p/6995376.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!