diff options
author | Petric <peti446@users.noreply.github.com> | 2021-01-11 19:43:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 20:43:36 +0100 |
commit | 8e06b084165f9f8d388a30142472ee4a7cf79b72 (patch) | |
tree | aced89f5bfefdc0119c73dac1572ca99733bc58c /conf | |
parent | fd3505411df308dfcb0b2f872fdc7b7985a0b34a (diff) |
refactor(db_assembler): Allow connecting to non default mysql ports (#3123)
Diffstat (limited to 'conf')
-rw-r--r-- | conf/dist/config.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/conf/dist/config.sh b/conf/dist/config.sh index e241803d22..91d987fb3a 100644 --- a/conf/dist/config.sh +++ b/conf/dist/config.sh @@ -164,16 +164,19 @@ DB_MYSQL_DUMP_EXEC="mysqldump" DB_AUTH_CONF="MYSQL_USER='acore'; \ MYSQL_PASS='acore'; \ MYSQL_HOST='localhost';\ + MYSQL_PORT='3306';\ " DB_CHARACTERS_CONF="MYSQL_USER='acore'; \ MYSQL_PASS='acore'; \ MYSQL_HOST='localhost';\ + MYSQL_PORT='3306';\ " DB_WORLD_CONF="MYSQL_USER='acore'; \ MYSQL_PASS='acore'; \ MYSQL_HOST='localhost';\ + MYSQL_PORT='3306';\ " DB_AUTH_NAME="acore_auth" |