mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-09 19:30:18 +01:00
MariaDB support
This commit is contained in:
parent
2d178fe83a
commit
3c88b9e8db
4 changed files with 4 additions and 3 deletions
|
@ -23,6 +23,7 @@ mysql_enablerepo: ""
|
|||
mysql_port: "3306"
|
||||
mysql_bind_address: '0.0.0.0'
|
||||
mysql_datadir: /var/lib/mysql
|
||||
__mysql_pid_file: /var/run/mysqld/mysqld.pid
|
||||
|
||||
# Slow query log settings.
|
||||
mysql_slow_query_log_enabled: no
|
||||
|
|
|
@ -94,4 +94,4 @@ quick
|
|||
max_allowed_packet = {{ mysql_mysqldump_max_allowed_packet }}
|
||||
|
||||
[mysqld_safe]
|
||||
pid-file = /var/run/mysqld/mysqld.pid
|
||||
pid-file = {{ mysql_pid_file }}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
mysql_daemon: mysql
|
||||
__mysql_daemon: mysql
|
||||
mysql_config_file: /etc/mysql/my.cnf
|
||||
__mysql_packages:
|
||||
- mysql-common
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
mysql_daemon: mysqld
|
||||
__mysql_daemon: mysqld
|
||||
mysql_config_file: /etc/my.cnf
|
||||
__mysql_packages:
|
||||
- mysql
|
||||
|
|
Loading…
Reference in a new issue