diff options
author | Joas Schilling <coding@schilljs.com> | 2020-02-05 11:08:18 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2020-02-05 13:55:16 +0100 |
commit | ac89b6abe71b7cea07413aa796f468c4df7eb16c (patch) | |
tree | 4097e3ebf2de0ef81e316de621a006db79d681f8 /lib | |
parent | 0aa216fc483cb86eadd0f1e759406e4d679c949c (diff) | |
download | nextcloud-server-ac89b6abe71b7cea07413aa796f468c4df7eb16c.tar.gz nextcloud-server-ac89b6abe71b7cea07413aa796f468c4df7eb16c.zip |
Check the new connection on setup like with PostgreSQL and Oracle
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Setup/MySQL.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/private/Setup/MySQL.php b/lib/private/Setup/MySQL.php index 1ee650fecc6..7371c7aeab2 100644 --- a/lib/private/Setup/MySQL.php +++ b/lib/private/Setup/MySQL.php @@ -58,6 +58,16 @@ class MySQL extends AbstractDatabase { //fill the database if needed $query='select count(*) from information_schema.tables where table_schema=? AND table_name = ?'; $connection->executeQuery($query, [$this->dbName, $this->tablePrefix.'users']); + + $connection->close(); + $connection = $this->connect(); + try { + $connection->connect(); + } catch (\Exception $e) { + $this->logger->logException($e); + throw new \OC\DatabaseSetupException($this->trans->t('MySQL username and/or password not valid'), + $this->trans->t('You need to enter details of an existing account.')); + } } /** |