diff options
author | Yehonal <yehonal.azeroth@gmail.com> | 2017-09-21 21:52:17 +0200 |
---|---|---|
committer | Yehonal <yehonal.azeroth@gmail.com> | 2017-09-21 21:52:17 +0200 |
commit | 421def048facabeb5dd5b7faa981bdefe120f302 (patch) | |
tree | 5f6b142bb873db6d9838725059ded82595b1baa2 /conf | |
parent | 31848f9a6651bf06b7415294f993d2e0b1f39f7d (diff) |
Bash: fixed mysql default conf
Diffstat (limited to 'conf')
-rw-r--r-- | conf/config.sh.dist | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/conf/config.sh.dist b/conf/config.sh.dist index 497d3fc954..843b704af6 100644 --- a/conf/config.sh.dist +++ b/conf/config.sh.dist @@ -146,20 +146,20 @@ DB_SKIP_BASE_IMPORT_IF_EXISTS=true DB_MYSQL_EXEC="mysql" DB_MYSQL_DUMP_EXEC="mysqldump" -DB_CHARACTERS_CONF="MYSQL_USER='root'; \ - MYSQL_PASS='root'; \ - MYSQL_HOST='localhost';\ +DB_CHARACTERS_CONF="MYSQL_USER='acore'; \ + MYSQL_PASS='acore'; \ + MYSQL_HOST='127.0.0.1';\ " -DB_AUTH_CONF="MYSQL_USER='root'; \ - MYSQL_PASS='root'; \ - MYSQL_HOST='localhost';\ +DB_AUTH_CONF="MYSQL_USER='acore'; \ + MYSQL_PASS='acore'; \ + MYSQL_HOST='127.0.0.1';\ " -DB_WORLD_CONF="MYSQL_USER='root'; \ - MYSQL_PASS='root'; \ - MYSQL_HOST='localhost';\ +DB_WORLD_CONF="MYSQL_USER='acore'; \ + MYSQL_PASS='acore'; \ + MYSQL_HOST='127.0.0.1';\ " |