Support of optimizing (repairing) tables of multiple mysql installations.

This commit is contained in:
2018-03-05 00:57:51 +01:00
parent 5da83b8558
commit c4e6aafb33
2 changed files with 263 additions and 88 deletions

View File

@ -5,7 +5,9 @@
# ----------------------------------------------------
# - MySQL / MariaDB credentials
# - MySQL / MariaDB / Percona credentials
# - mysql_credential_args
# -
# - Giving password on command line is insecure an sind mysql 5.5
# - you will get a warning doing so.
@ -31,4 +33,24 @@
# -
# - Defaults to mysql_credential_args="--login-path=local"
# -
mysql_credential_args=""
#mysql_credential_args="--login-path=local"
# - mysql_credential_args_arr
# -
# - If multiple MySQL / MariaDB / Percona Installations are present, for each installation,
# - you can give its own credentials.
# -
# - Note:
# - If this parameter ist present, the parameter 'mysql_credential_args' will be ignored.
# -
# - Example
# - mysql_credential_args_arr="10.2.13:--defaults-file=/etc/mysql/debian.cnf 5.2.7:--login-path=local"
# - msql_credential_args_arr="5.6:--login-path=local-5.6 5.7:--login-path=local"
# -
# -
# - Note:
# - the forst value (before the colon ':') is only user for logging output and has no
# - further relevance .
# -
#msql_credential_args_arr=""