Я пытаюсь установить mysql И настроить базу данных, используя ANSIBLE на CentOS7 (я понятия не имею, почему все документы в мире теперь ТОЛЬКО говорят об Ubuntu и НИКАКИХ CentOS ... действительно ПЕЧАЛЬНО!)
вот мой файл create_db.yml
---
- name: Install Python MySQLdb
yum: name=MySQL-python state=latest
- name: Create the Drupal database
mysql_db: db={{ db_name }} state=present
- name: Create the Drupal user
mysql_user: >
name={{ db_user }}
password={{ db_password }}
priv={{ db_name }}.*:ALL
host=localhost
ТАКЖЕ вот мой файл setup.yml
---
- name: Install MySQL server
yum: name=mariadb-server state=latest
- name: Install php apache modules
yum: name=php-gd state=latest
- name: Install php apache modules
yum: name=php-ldap state=latest
- name: Install php apache modules
yum: name=php-odbc state=latest
- name: Install php apache modules
yum: name=php-pear state=latest
- name: Install php apache modules
yum: name=php-xml state=latest
- name: Install php apache modules
yum: name=php-xmlrpc state=latest
- name: Install php apache modules
yum: name=php-mbstring state=latest
- name: Install php apache modules
yum: name=php-snmp state=latest
- name: Install php apache modules
yum: name=php-soap state=latest
- name: Install php apache modules
yum: name=curl state=latest
- name: Install php apache modules
yum: name=curl-devel state=latest
- name: Install MySQL module for PHP
yum: name=php-mysql state=latest
СЕЙЧАС, когда работает ansible, чтобы установить его, я получаю ошибку
TASK: [mysql | Install MySQL server] ******************************************
ok: [ansiblev1]
TASK: [mysql | Install php apache modules] ************************************
ok: [ansiblev1]
TASK: [mysql | Install php apache modules] ************************************
changed: [ansiblev1]
TASK: [mysql | Install php apache modules] ************************************
changed: [ansiblev1]
TASK: [mysql | Install php apache modules] ************************************
changed: [ansiblev1]
TASK: [mysql | Install php apache modules] ************************************
ok: [ansiblev1]
TASK: [mysql | Install php apache modules] ************************************
changed: [ansiblev1]
TASK: [mysql | Install php apache modules] ************************************
changed: [ansiblev1]
TASK: [mysql | Install php apache modules] ************************************
changed: [ansiblev1]
TASK: [mysql | Install php apache modules] ************************************
changed: [ansiblev1]
TASK: [mysql | Install php apache modules] ************************************
ok: [ansiblev1]
TASK: [mysql | Install php apache modules] ************************************
changed: [ansiblev1]
TASK: [mysql | Install MySQL module for PHP] **********************************
changed: [ansiblev1]
TASK: [mysql | Install Python MySQLdb] ****************************************
changed: [ansiblev1]
TASK: [mysql | Create the Drupal database] ************************************
failed: [ansiblev1] => {"failed": true}
msg: unable to connect, check login_user and login_password are correct, or alternatively check ~/.my.cnf contains credentials
FATAL: all hosts have already failed -- aborting
PLAY RECAP ********************************************************************
to retry, use: --limit @/home/bbusari/site.retry
ansiblev1 : ok=18 changed=10 unreachable=0 failed=1
Что мне делать, чтобы решить эту проблему? Запуск CentOS 7 и ansible-1.8.2-1.el7.noarch
Спасибо
Чтобы ответить на ваш вопрос о том, что MariaDB запущена:
- name: Set MariaDB to start now and on boot
service: name=mysql state=started enabled=yes