如何为mysql数据库添加超级权限?

how to add super privileges to mysql database?(如何为mysql数据库添加超级权限?)
本文介绍了如何为mysql数据库添加超级权限?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试在 mysql 中执行查询.

SET GLOBAL log_bin_trust_function_creators =1;

<块引用>

错误:

SQL 查询:
设置全局 log_bin_trust_function_creators =1
MySQL 说:
#1227 - 访问被拒绝;您需要此操作的 SUPER 权限

我想知道如何将SUPER权限分配给任何数据库

解决方案

您可以使用 phpmyadmin 添加超级权限:

<块引用>

转到 PHPMYADMIN > 权限 > 编辑用户 > 在管理员选项卡下单击超级.> 去

如果你想通过Console来做,这样做:

 mysql>GRANT SUPER ON *.* TO user@'localhost' IDENTIFIED BY 'password';

执行上述代码后,以:

mysql>同花顺特权;

你应该在 *.* 上做,因为 SUPER 不是只适用于一个数据库的特权,它是全局的.

I am trying to execute query in mysql.

SET GLOBAL log_bin_trust_function_creators =1; 

Error:

SQL query:
SET GLOBAL log_bin_trust_function_creators =1
MySQL said:
#1227 - Access denied; you need the SUPER privilege for this operation

I want to know that how do i assign SUPER privileges to any database

解决方案

You can add super privilege using phpmyadmin:

Go to PHPMYADMIN > privileges > Edit User > Under Administrator tab Click SUPER. > Go

If you want to do it through Console, do like this:

 mysql> GRANT SUPER ON *.* TO user@'localhost' IDENTIFIED BY 'password';

After executing above code, end it with:

mysql> FLUSH PRIVILEGES;

You should do in on *.* because SUPER is not the privilege that applies just to one database, it's global.

这篇关于如何为mysql数据库添加超级权限?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Can#39;t Create Entity Data Model - using MySql and EF6(无法创建实体数据模型 - 使用 MySql 和 EF6)
MySQL select with CONCAT condition(MySQL选择与CONCAT条件)
Capitalize first letter of each word, in existing table(将现有表格中每个单词的首字母大写)
How to retrieve SQL result column value using column name in Python?(如何在 Python 中使用列名检索 SQL 结果列值?)
Update row with data from another row in the same table(使用同一表中另一行的数据更新行)
Exporting results of a Mysql query to excel?(将 Mysql 查询的结果导出到 excel?)