mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-11 12:10:20 +01:00
33 lines
995 B
YAML
33 lines
995 B
YAML
|
---
|
||
|
# This playbook will install mysql and create db user and give permissions.
|
||
|
|
||
|
- name: Install Mysql package
|
||
|
action: yum pkg=$item state=installed
|
||
|
with_items:
|
||
|
- mysql-server
|
||
|
- MySQL-python
|
||
|
- libselinux-python
|
||
|
- libsemanage-python
|
||
|
|
||
|
- name: Configure SELinux to start mysql on any port
|
||
|
seboolean: name=mysql_connect_any state=true persistent=yes
|
||
|
|
||
|
- name: Create Mysql configuration file
|
||
|
action: template src=../roles/db/templates/my.cnf.j2 dest=/etc/my.cnf
|
||
|
notify:
|
||
|
- restart mysql
|
||
|
|
||
|
- name: Start Mysql Service
|
||
|
service: name=mysqld state=started enabled=true
|
||
|
|
||
|
- name: insert iptables rule
|
||
|
lineinfile: dest=/etc/sysconfig/iptables state=present regexp="$mysql_port" insertafter="^:OUTPUT " line="-A INPUT -p tcp --dport $mysql_port -j ACCEPT"
|
||
|
notify: restart iptables
|
||
|
|
||
|
|
||
|
- name: Create Application Database
|
||
|
mysql_db: name=$dbname state=present
|
||
|
|
||
|
- name: Create Application DB User
|
||
|
mysql_user: name=$dbuser password=$upassword priv=*.*:ALL host='%' state=present
|