grant create database privilege to mariadb user(向 mariadb 用户授予创建数据库权限)
问题描述
我知道在数据库管理中,使用 root 用户是一种不好的行为,我正在设置一个具有基本权限的自定义用户(创建数据库、删除数据库、对所有新创建的数据库的所有访问权限等).
我创建了一个用户 antoine
,它应该是用于登录 mariadb 服务器
的基本用户.
I know that in database management, it's a bad behavior to use the root user and I'm setting up a custom user with base privileges (create database, drop db, all access to all newly created dbs, etc).
I've created a user antoine
which should be the base user used to login to the mariadb server
.
问题是,我不知道如何授予管理权限,如 create database xxx
、drop database xxx
等...文档解释说授予一个特权,你运行以下命令:
Problem is, I can't figure out how to grant administration privileges like create database xxx
, drop database xxx
, etc... The documentation explains that to grant a privilege, you run the following command:
GRANT role ON database.table TO user@host
但是,当涉及到服务器权限时,我该怎么做呢?我试过 *.*
而不是 database.table
但它不起作用.
But, when it comes to server privileges, how can I do it ? I've tried the *.*
instead of database.table
but it's not working.
推荐答案
创建一个用户,然后授予该用户您希望他们拥有的权限.
Create a user and then grant that user the privileges you want them to have like this.
CREATE USER 'antoine'@'localhost' IDENTIFIED VIA mysql_native_password USING 'a-password';
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON *.* TO 'antoine'@'localhost';
这篇关于向 mariadb 用户授予创建数据库权限的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:向 mariadb 用户授予创建数据库权限
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01