Ansible doesn#39;t change privilage from USAGE to GRANT ALL(Ansible 不会将权限从 USAGE 更改为 GRANT ALL)
问题描述
我使用以下 ansible 任务将所有权限授予所有数据库.
I used following ansible task to GRANT ALL privilege to all databases.
- name: create new user {{ db_user }} with all privilege
mysql_user: name="{{ db_user }}"
password="{{ db_password }}"
append_privs=yes
priv=*.*:ALL,GRANT state=present
但是当我在 mysql(mariadb)
上运行 show grants for 'dbuser'@'XX.XX.XX.XX';
它显示我跟随.
but when I run show grants for 'dbuser'@'XX.XX.XX.XX';
on mysql(mariadb)
it shows me following.
GRANT USAGE ON *.* TO 'dbuser'@'XX.XX.XX.XX' IDENTIFIED BY PASSWORD '*A7AD1ECBCD787B8CABE6A58AEA652A8B3CF5035BA82'
如何使用 ansible 将此 USAGE 更改为 GRANT ALL?
How to change this USAGE to GRANT ALL using ansible?
推荐答案
默认情况下 mysql_user
使用 localhost
主机部分创建用户.
因此,您的任务使用 GRANT ALL
创建了 dbuser@localhost
.
如果您需要其他主机,请为模块设置 host=XX.XX.XX.XX
参数.
从 2.1 开始修改权限时也有 host_all=yes
可用.
By default mysql_user
creates users with localhost
host portion.
So your task created dbuser@localhost
with GRANT ALL
.
If you need another host, set host=XX.XX.XX.XX
parameter for the module.
Also there is host_all=yes
available since 2.1 when modifying permissions.
这篇关于Ansible 不会将权限从 USAGE 更改为 GRANT ALL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Ansible 不会将权限从 USAGE 更改为 GRANT ALL
基础教程推荐
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01