您的位置:首页 > 教程笔记 > 综合教程

phpstudy SQL 执行错误#1290.从数据库的响应:

2020-03-06 19:42:40 综合教程 113
错误

SQL 执行错误#1290.从数据库的响应:
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)

# 把在所有数据库的所有表的所有权限赋值给位于所有IP地址的root用户。

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

Query OK, 0 rows affected (0.00 sec)

相关推荐