Ansible FAILED: o módulo python mysqldb é necessário

Ansible FAILED: o módulo python mysqldb é necessário

Por favor, diga-me como instalar o módulo mysql_db no debian 9. Estou escrevendo um manual em ansible. Foi necessário criar um banco de dados e um usuário. A documentação ansible diz que o módulo mysql_db é usado para isso. Abaixo na mesma página há informações

O pacote Python pode ser instalado com apt-get install python-pymysql

Eu instalo de acordo com as instruções do Ansible externo.

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) ...

Em seguida, tento iniciar o manual.

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

Meu manual 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

Responder1

Resposta curta

Instale o módulo python mysqldb no host remoto.

Detalhes

FRACASSADO! => { ... "msg": "o módulo python mysqldb é necessário" ...

Citando deRequisitos

Os requisitos abaixo são necessários no host que executa este módulo.

  • MySQLdb (Python 2.x)
  • PyMySQL (Python 2.7 e Python 3.X), ou
  • mysql (binário de linha de comando)
  • mysqldump (binário de linha de comando)

" The host that executes this module" é ohospedeiro remoto.

Por exemplo, no FreeBSD (como host remoto)

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

FWIW, há um problema em abertoO módulo MySQL-python é necessário #906com o Debian.

informação relacionada