Merge "MariaDB upgrade: specify host and port"

This commit is contained in:
Zuul 2019-03-25 11:54:05 +00:00 committed by Gerrit Code Review
commit 658eb2740b
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ if [[ "${!KOLLA_UPGRADE[@]}" ]]; then
# There doesn't seem to be anything in the directory, so remove it.
rm -rf /var/lib/mysql/.pki
mysql_upgrade --user=root --password="${DB_ROOT_PASSWORD}"
mysql_upgrade --host=${DB_HOST} --port=${DB_PORT} --user=root --password="${DB_ROOT_PASSWORD}"
exit 0
fi