From c300bf8158d7b53d679302a9172d4cdbcd0ca2f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francesco=20Borz=C3=AC?= Date: Fri, 23 Aug 2019 00:03:07 +0200 Subject: [PATCH] fix(db-assembler): error 'cant find any matching row in the user table' (#2202) --- conf/config.sh.dist | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/config.sh.dist b/conf/config.sh.dist index 82b771261..5763809cc 100644 --- a/conf/config.sh.dist +++ b/conf/config.sh.dist @@ -152,17 +152,17 @@ DB_MYSQL_DUMP_EXEC="mysqldump" DB_AUTH_CONF="MYSQL_USER='acore'; \ MYSQL_PASS='acore'; \ - MYSQL_HOST='127.0.0.1';\ + MYSQL_HOST='localhost';\ " DB_CHARACTERS_CONF="MYSQL_USER='acore'; \ MYSQL_PASS='acore'; \ - MYSQL_HOST='127.0.0.1';\ + MYSQL_HOST='localhost';\ " DB_WORLD_CONF="MYSQL_USER='acore'; \ MYSQL_PASS='acore'; \ - MYSQL_HOST='127.0.0.1';\ + MYSQL_HOST='localhost';\ " DB_AUTH_NAME="acore_auth"