Ansible FALLÓ: se requiere el módulo python mysqldb

Ansible FALLÓ: se requiere el módulo python mysqldb

Dígame cómo instalar el módulo mysql_db en Debian 9. Estoy escribiendo un libro de jugadas en ansible. Fue necesario crear una base de datos y un usuario. La documentación ansible dice que el módulo mysql_db se utiliza para esto. Abajo en la misma página hay información.

El paquete Python se puede instalar con apt-get install python-pymysql

Lo instalo de acuerdo con las instrucciones del sitio externo Ansible.

xxxx@instance-3:/etc/ansible$ sudo apt-get install python-pymysql
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Suggested packages:
  python-pymysql-doc
The following NEW packages will be installed:
  python-pymysql
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 61.4 kB of archives.
After this operation, 318 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian stretch/main amd64 python-pymysql all 0.7.10-1 [61.4 kB]
Fetched 61.4 kB in 0s (987 kB/s)    
Selecting previously unselected package python-pymysql.
(Reading database ... 55250 files and directories currently installed.)
Preparing to unpack .../python-pymysql_0.7.10-1_all.deb ...
Unpacking python-pymysql (0.7.10-1) ...
Setting up python-pymysql (0.7.10-1) ...

A continuación intento iniciar el libro de jugadas.

xxxx@instance-3:/etc/ansible$ ansible-playbook db.yml

PLAY [create data base] ********************************************************

TASK [setup] *******************************************************************
ok: [xx.xx.xx.xxx]

TASK [db] **********************************************************************
fatal: [xx.xx.xx.xxx]: FAILED! => {"changed": false, "failed": true, "msg": "the python mysqldb module is required"}
 [WARNING]: Could not create retry file '/etc/ansible/db.retry'.         [Errno 13] Permission denied:
u'/etc/ansible/db.retry'


PLAY RECAP *********************************************************************
xx.xx.xx.xxx               : ok=1    changed=0    unreachable=0    failed=1

Mi libro de jugadas para ansible

---
- name: create data base
  hosts: all
  become: yes

  tasks:
  - name: db
    mysql_db:
     name: bobdata
     state: present

  - name: user
    mysql_user:
     name: wpuser
     password: 123456
     priv: '*.*:ALL'
     state: present

Respuesta1

Respuesta corta

Instale el módulo python mysqldb en el host remoto.

Detalles

¡FALLIDO! => { ... "msg": "se requiere el módulo python mysqldb" ...

Citando deRequisitos

Los siguientes requisitos son necesarios en el host que ejecuta este módulo.

  • MySQLdb (Python 2.x)
  • PyMySQL (Python 2.7 y Python 3.X), o
  • mysql (línea de comando binaria)
  • mysqldump (binario de línea de comando)

" The host that executes this module" es elservidor remoto.

Por ejemplo en FreeBSD (como host remoto)

$ pkg info | grep -i MySQLdb
py27-MySQLdb-1.2.5_1           Access a MySQL database through Python

FWIW, hay un problema abiertoSe requiere el módulo MySQL-python #906con Debian.

información relacionada