Updates to many roles, including main user role to allow setting an alternate home directory
This commit is contained in:
56
db/mysql-percona/defaults/main.yml
Normal file
56
db/mysql-percona/defaults/main.yml
Normal file
@@ -0,0 +1,56 @@
|
||||
---
|
||||
|
||||
# Version to install, defaulting to 5.6
|
||||
mysql_version_major: "8"
|
||||
mysql_version_minor: "0"
|
||||
mysql_version: "{{ mysql_version_major|int }}.{{ mysql_version_minor|int }}"
|
||||
|
||||
# Basic settings
|
||||
mysql_root_password: "techie"
|
||||
mysql_port: "3306"
|
||||
mysql_bind_address: "127.0.0.1"
|
||||
mysql_language: "/usr/share/mysql/"
|
||||
mysql_datadir: "/var/lib/mysql"
|
||||
mysql_tempdir: "/tmp"
|
||||
|
||||
# Fine tuning
|
||||
mysql_key_buffer: "16M"
|
||||
mysql_max_allowed_packet: "256M"
|
||||
mysql_thread_stack: "192K"
|
||||
mysql_cache_size: "8"
|
||||
mysql_myisam_recover: "BACKUP"
|
||||
mysql_max_connections: "500"
|
||||
mysql_table_cache: "64"
|
||||
mysql_thread_concurrency: "10"
|
||||
mysql_query_cache_limit: "1M"
|
||||
mysql_query_cache_size: "16M"
|
||||
mysql_character_set_server: "utf8mb4"
|
||||
mysql_collation_server: "utf8mb4_0900_ai_ci"
|
||||
mysql_mysqldump_max_allowed_packet: "128M"
|
||||
mysql_isamchk_key_buffer: "16M"
|
||||
mysql_sort_buffer_size: "256K"
|
||||
|
||||
# InnoDB tuning
|
||||
mysql_innodb_file_per_table: "1"
|
||||
mysql_innodb_flush_method: "fdatasync"
|
||||
mysql_innodb_buffer_pool_size: "1G"
|
||||
mysql_innodb_flush_log_at_trx_commit: "1"
|
||||
mysql_innodb_lock_wait_timeout: "50"
|
||||
mysql_innodb_log_buffer_size: "1M"
|
||||
mysql_innodb_log_file_size: "64M"
|
||||
|
||||
mysql_character_set_client_handshake: "FALSE"
|
||||
|
||||
mysql_timezone_info: "false"
|
||||
|
||||
mysql_databases: []
|
||||
mysql_users: []
|
||||
|
||||
install_rpm_repositories: "true"
|
||||
|
||||
# To disable log_bin in percona >=8, enabled by default
|
||||
mysql_disable_log_bin: "true"
|
||||
|
||||
# Default Auth Plugin
|
||||
# used in templates when Percona Server >= 5.7
|
||||
mysql_default_authentication_plugin: "mysql_native_password"
|
||||
Reference in New Issue
Block a user