I am trying to install mysql using ANSIBLE on CentOS7(i have no idea why 
every documention in the world now ONLY talks ablotu Ubuntu and NO CentOS 
anymore...really SAD!)

here is my create_db.yml file

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


ALSO here is my setup.yml file

---

- 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


NOW when ansible is running to install it, here is the error i get

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



What do i do to resolve this?
Running CentOS 7 and ansible-1.8.2-1.el7.noarch

Thanks




-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/00dcb3b9-21a3-4da4-8db5-1233b301614b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to