Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ ConnectionException
Show exception properties
Doctrine\DBAL\Exception\ConnectionException {#757 -query: null }
case '42P07':return new TableExistsException($exception, $query);case '08006':return new ConnectionException($exception, $query);}// Prior to fixing https://bugs.php.net/bug.php?id=64705 (PHP 7.4.10),// in some cases (mainly connection errors) the PDO exception wouldn't provide a SQLSTATE via its code.// We have to match against the SQLSTATE in the error message in these cases.
in
vendor/doctrine/dbal/src/Connection.php
->
convert
(line 1939)
private function handleDriverException(Driver\Exception $driverException,?Query $query): DriverException {$this->exceptionConverter ??= $this->_driver->getExceptionConverter();$exception = $this->exceptionConverter->convert($driverException, $query);if ($exception instanceof ConnectionLost) {$this->close();}
in
vendor/doctrine/dbal/src/Connection.php
->
handleDriverException
(line 1887)
}/** @internal */final public function convertException(Driver\Exception $e): DriverException{return $this->handleDriverException($e, null);}/*** @param array<int, mixed>|array<string, mixed> $params* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types
in
vendor/doctrine/dbal/src/Connection.php
->
convertException
(line 380)
}try {$this->_conn = $this->_driver->connect($this->params);} catch (Driver\Exception $e) {throw $this->convertException($e);}if ($this->autoCommit === false) {$this->beginTransaction();}
in
vendor/doctrine/dbal/src/Connection.php
->
connect
(line 1655)
'https://github.com/doctrine/dbal/issues/4966','Connection::getWrappedConnection() is deprecated.'. ' Use Connection::getNativeConnection() to access the native connection.',);$this->connect();return $this->_conn;}/** @return resource|object */
in
vendor/doctrine/dbal/src/Connection.php
->
getWrappedConnection
(line 1082)
): Result {if ($qcp !== null) {return $this->executeCacheQuery($sql, $params, $types, $qcp);}$connection = $this->getWrappedConnection();$logger = $this->_config->getSQLLogger();if ($logger !== null) {$logger->startQuery($sql, $params, $types);}
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 969)
{$this->switchPersisterContext($offset, $limit);$sql = $this->getSelectSQL($criteria, null, null, $limit, $offset, $orderBy);[$params, $types] = $this->expandParameters($criteria);$stmt = $this->conn->executeQuery($sql, $params, $types);$hydrator = $this->em->newHydrator($this->currentPersisterContext->selectJoinSql ? Query::HYDRATE_OBJECT : Query::HYDRATE_SIMPLEOBJECT);return $hydrator->hydrateAll($stmt, $this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);}
in
vendor/doctrine/orm/src/EntityRepository.php
->
loadAll
(line 225)
*/public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null){$persister = $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);return $persister->loadAll($criteria, $orderBy, $limit, $offset);}/*** Finds a single entity by a set of criteria.*
EntityRepository->findBy()
in
mapbender/src/Mapbender/CoreBundle/Controller/WelcomeController.php
(line 44)
*/#[Route(path: '/', methods: ['GET'])]public function list(): Response{$yamlApplications = $this->yamlRepository->getApplications();$dbApplications = $this->doctrine->getRepository(Application::class)->findBy(array(), array('title' => 'ASC',));/** @var Application[] $allApplications */$allApplications = array_merge($yamlApplications, $dbApplications);$allowedApplications = array();
in
vendor/symfony/http-kernel/HttpKernel.php
->
list
(line 181)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Doctrine\DBAL\Driver\PDO\ Exception
in
vendor/doctrine/dbal/src/Driver/PDO/Exception.php
(line 28)
} else {$code = $exception->getCode();$sqlState = null;}return new self($exception->getMessage(), $sqlState, $code, $exception);}}
in
vendor/doctrine/dbal/src/Driver/PDO/PgSQL/Driver.php
::
new
(line 41)
$params['user'] ?? '',$params['password'] ?? '',$driverOptions,);} catch (PDOException $exception) {throw Exception::new($exception);}if (! isset($driverOptions[PDO::PGSQL_ATTR_DISABLE_PREPARES])|| $driverOptions[PDO::PGSQL_ATTR_DISABLE_PREPARES] === true
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php
->
connect
(line 29)
*/public function connect(#[SensitiveParameter]array $params) {return $this->wrappedDriver->connect($params);}/*** {@inheritDoc}*/
in
vendor/doctrine/dbal/src/Logging/Driver.php
->
connect
(line 34)
array $params) {$this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]);return new Connection(parent::connect($params),$this->logger,);}/**
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php
->
connect
(line 29)
*/public function connect(#[SensitiveParameter]array $params) {return $this->wrappedDriver->connect($params);}/*** {@inheritDoc}*/
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php
->
connect
(line 37)
parent::__construct($driver);}public function connect(array $params): ConnectionInterface{$connection = parent::connect($params);if ('void' !== (string) (new \ReflectionMethod(DriverInterface\Connection::class, 'commit'))->getReturnType()) {return new DBAL3\Connection($connection,$this->debugDataHolder,
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php
->
connect
(line 29)
*/public function connect(#[SensitiveParameter]array $params) {return $this->wrappedDriver->connect($params);}/*** {@inheritDoc}*/
AbstractDriverMiddleware->connect()
in
mapbender/src/Mapbender/CoreBundle/Component/EventListener/SqliteConnectionMiddleWare.php
(line 19)
parent::__construct($wrappedDriver);}public function connect(#[\SensitiveParameter] array $params): Connection{$connection = parent::connect($params);if (!$this->listener->skipForeignKeys) {$platform = $this->getDatabasePlatform();if ($platform instanceof SqlitePlatform) {$this->enableForeignKeys($connection);
in
vendor/doctrine/dbal/src/Connection.php
->
connect
(line 378)
if ($this->_conn !== null) {return false;}try {$this->_conn = $this->_driver->connect($this->params);} catch (Driver\Exception $e) {throw $this->convertException($e);}if ($this->autoCommit === false) {
in
vendor/doctrine/dbal/src/Connection.php
->
connect
(line 1655)
'https://github.com/doctrine/dbal/issues/4966','Connection::getWrappedConnection() is deprecated.'. ' Use Connection::getNativeConnection() to access the native connection.',);$this->connect();return $this->_conn;}/** @return resource|object */
in
vendor/doctrine/dbal/src/Connection.php
->
getWrappedConnection
(line 1082)
): Result {if ($qcp !== null) {return $this->executeCacheQuery($sql, $params, $types, $qcp);}$connection = $this->getWrappedConnection();$logger = $this->_config->getSQLLogger();if ($logger !== null) {$logger->startQuery($sql, $params, $types);}
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 969)
{$this->switchPersisterContext($offset, $limit);$sql = $this->getSelectSQL($criteria, null, null, $limit, $offset, $orderBy);[$params, $types] = $this->expandParameters($criteria);$stmt = $this->conn->executeQuery($sql, $params, $types);$hydrator = $this->em->newHydrator($this->currentPersisterContext->selectJoinSql ? Query::HYDRATE_OBJECT : Query::HYDRATE_SIMPLEOBJECT);return $hydrator->hydrateAll($stmt, $this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);}
in
vendor/doctrine/orm/src/EntityRepository.php
->
loadAll
(line 225)
*/public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null){$persister = $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);return $persister->loadAll($criteria, $orderBy, $limit, $offset);}/*** Finds a single entity by a set of criteria.*
EntityRepository->findBy()
in
mapbender/src/Mapbender/CoreBundle/Controller/WelcomeController.php
(line 44)
*/#[Route(path: '/', methods: ['GET'])]public function list(): Response{$yamlApplications = $this->yamlRepository->getApplications();$dbApplications = $this->doctrine->getRepository(Application::class)->findBy(array(), array('title' => 'ASC',));/** @var Application[] $allApplications */$allApplications = array_merge($yamlApplications, $dbApplications);$allowedApplications = array();
in
vendor/symfony/http-kernel/HttpKernel.php
->
list
(line 181)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
PDOException
in
vendor/doctrine/dbal/src/Driver/PDO/PgSQL/Driver.php
(line 34)
$safeParams = $params;unset($safeParams['password'], $safeParams['url']);try {$pdo = new PDO($this->constructPdoDsn($safeParams),$params['user'] ?? '',$params['password'] ?? '',$driverOptions,);
in
vendor/doctrine/dbal/src/Driver/PDO/PgSQL/Driver.php
->
__construct
(line 34)
$safeParams = $params;unset($safeParams['password'], $safeParams['url']);try {$pdo = new PDO($this->constructPdoDsn($safeParams),$params['user'] ?? '',$params['password'] ?? '',$driverOptions,);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php
->
connect
(line 29)
*/public function connect(#[SensitiveParameter]array $params) {return $this->wrappedDriver->connect($params);}/*** {@inheritDoc}*/
in
vendor/doctrine/dbal/src/Logging/Driver.php
->
connect
(line 34)
array $params) {$this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]);return new Connection(parent::connect($params),$this->logger,);}/**
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php
->
connect
(line 29)
*/public function connect(#[SensitiveParameter]array $params) {return $this->wrappedDriver->connect($params);}/*** {@inheritDoc}*/
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php
->
connect
(line 37)
parent::__construct($driver);}public function connect(array $params): ConnectionInterface{$connection = parent::connect($params);if ('void' !== (string) (new \ReflectionMethod(DriverInterface\Connection::class, 'commit'))->getReturnType()) {return new DBAL3\Connection($connection,$this->debugDataHolder,
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php
->
connect
(line 29)
*/public function connect(#[SensitiveParameter]array $params) {return $this->wrappedDriver->connect($params);}/*** {@inheritDoc}*/
AbstractDriverMiddleware->connect()
in
mapbender/src/Mapbender/CoreBundle/Component/EventListener/SqliteConnectionMiddleWare.php
(line 19)
parent::__construct($wrappedDriver);}public function connect(#[\SensitiveParameter] array $params): Connection{$connection = parent::connect($params);if (!$this->listener->skipForeignKeys) {$platform = $this->getDatabasePlatform();if ($platform instanceof SqlitePlatform) {$this->enableForeignKeys($connection);
in
vendor/doctrine/dbal/src/Connection.php
->
connect
(line 378)
if ($this->_conn !== null) {return false;}try {$this->_conn = $this->_driver->connect($this->params);} catch (Driver\Exception $e) {throw $this->convertException($e);}if ($this->autoCommit === false) {
in
vendor/doctrine/dbal/src/Connection.php
->
connect
(line 1655)
'https://github.com/doctrine/dbal/issues/4966','Connection::getWrappedConnection() is deprecated.'. ' Use Connection::getNativeConnection() to access the native connection.',);$this->connect();return $this->_conn;}/** @return resource|object */
in
vendor/doctrine/dbal/src/Connection.php
->
getWrappedConnection
(line 1082)
): Result {if ($qcp !== null) {return $this->executeCacheQuery($sql, $params, $types, $qcp);}$connection = $this->getWrappedConnection();$logger = $this->_config->getSQLLogger();if ($logger !== null) {$logger->startQuery($sql, $params, $types);}
in
vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php
->
executeQuery
(line 969)
{$this->switchPersisterContext($offset, $limit);$sql = $this->getSelectSQL($criteria, null, null, $limit, $offset, $orderBy);[$params, $types] = $this->expandParameters($criteria);$stmt = $this->conn->executeQuery($sql, $params, $types);$hydrator = $this->em->newHydrator($this->currentPersisterContext->selectJoinSql ? Query::HYDRATE_OBJECT : Query::HYDRATE_SIMPLEOBJECT);return $hydrator->hydrateAll($stmt, $this->currentPersisterContext->rsm, [UnitOfWork::HINT_DEFEREAGERLOAD => true]);}
in
vendor/doctrine/orm/src/EntityRepository.php
->
loadAll
(line 225)
*/public function findBy(array $criteria, ?array $orderBy = null, $limit = null, $offset = null){$persister = $this->_em->getUnitOfWork()->getEntityPersister($this->_entityName);return $persister->loadAll($criteria, $orderBy, $limit, $offset);}/*** Finds a single entity by a set of criteria.*
EntityRepository->findBy()
in
mapbender/src/Mapbender/CoreBundle/Controller/WelcomeController.php
(line 44)
*/#[Route(path: '/', methods: ['GET'])]public function list(): Response{$yamlApplications = $this->yamlRepository->getApplications();$dbApplications = $this->doctrine->getRepository(Application::class)->findBy(array(), array('title' => 'ASC',));/** @var Application[] $allApplications */$allApplications = array_merge($yamlApplications, $dbApplications);$allowedApplications = array();
in
vendor/symfony/http-kernel/HttpKernel.php
->
list
(line 181)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 22:17:01 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "aaff0f"
},
"request_uri": "https://www.gis.sinnogy.de/mapbender/_profiler/aaff0f",
"method": "GET"
}
|
Stack Traces 3
|
[3/3]
ConnectionException
|
|---|
Doctrine\DBAL\Exception\ConnectionException:
An exception occurred in the driver: SQLSTATE[08006] [7] connection to server at "dedivirt3589.your-server.de" (2a01:4f8:1c1e:f308::2), port 5432 failed: FATAL: no pg_hba.conf entry for host "2a01:4f8:c0c:f764::1", user "mapbender", database "mapbender", SSL encryption
connection to server at "dedivirt3589.your-server.de" (2a01:4f8:1c1e:f308::2), port 5432 failed: FATAL: no pg_hba.conf entry for host "2a01:4f8:c0c:f764::1", user "mapbender", database "mapbender", no encryption
at vendor/doctrine/dbal/src/Driver/API/PostgreSQL/ExceptionConverter.php:77
at Doctrine\DBAL\Driver\API\PostgreSQL\ExceptionConverter->convert()
(vendor/doctrine/dbal/src/Connection.php:1939)
at Doctrine\DBAL\Connection->handleDriverException()
(vendor/doctrine/dbal/src/Connection.php:1887)
at Doctrine\DBAL\Connection->convertException()
(vendor/doctrine/dbal/src/Connection.php:380)
at Doctrine\DBAL\Connection->connect()
(vendor/doctrine/dbal/src/Connection.php:1655)
at Doctrine\DBAL\Connection->getWrappedConnection()
(vendor/doctrine/dbal/src/Connection.php:1082)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:969)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll()
(vendor/doctrine/orm/src/EntityRepository.php:225)
at Doctrine\ORM\EntityRepository->findBy()
(mapbender/src/Mapbender/CoreBundle/Controller/WelcomeController.php:44)
at Mapbender\CoreBundle\Controller\WelcomeController->list()
(vendor/symfony/http-kernel/HttpKernel.php:181)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:197)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/var/www/mapbender/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[08006] [7] connection to server at "dedivirt3589.your-server.de" (2a01:4f8:1c1e:f308::2), port 5432 failed: FATAL: no pg_hba.conf entry for host "2a01:4f8:c0c:f764::1", user "mapbender", database "mapbender", SSL encryption
connection to server at "dedivirt3589.your-server.de" (2a01:4f8:1c1e:f308::2), port 5432 failed: FATAL: no pg_hba.conf entry for host "2a01:4f8:c0c:f764::1", user "mapbender", database "mapbender", no encryption
at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:28
at Doctrine\DBAL\Driver\PDO\Exception::new()
(vendor/doctrine/dbal/src/Driver/PDO/PgSQL/Driver.php:41)
at Doctrine\DBAL\Driver\PDO\PgSQL\Driver->connect()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:29)
at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
(vendor/doctrine/dbal/src/Logging/Driver.php:34)
at Doctrine\DBAL\Logging\Driver->connect()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:29)
at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
(vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php:37)
at Symfony\Bridge\Doctrine\Middleware\Debug\Driver->connect()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:29)
at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
(mapbender/src/Mapbender/CoreBundle/Component/EventListener/SqliteConnectionMiddleWare.php:19)
at Mapbender\CoreBundle\Component\EventListener\SqliteConnectionMiddleWare->connect()
(vendor/doctrine/dbal/src/Connection.php:378)
at Doctrine\DBAL\Connection->connect()
(vendor/doctrine/dbal/src/Connection.php:1655)
at Doctrine\DBAL\Connection->getWrappedConnection()
(vendor/doctrine/dbal/src/Connection.php:1082)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:969)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll()
(vendor/doctrine/orm/src/EntityRepository.php:225)
at Doctrine\ORM\EntityRepository->findBy()
(mapbender/src/Mapbender/CoreBundle/Controller/WelcomeController.php:44)
at Mapbender\CoreBundle\Controller\WelcomeController->list()
(vendor/symfony/http-kernel/HttpKernel.php:181)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:197)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/var/www/mapbender/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[08006] [7] connection to server at "dedivirt3589.your-server.de" (2a01:4f8:1c1e:f308::2), port 5432 failed: FATAL: no pg_hba.conf entry for host "2a01:4f8:c0c:f764::1", user "mapbender", database "mapbender", SSL encryption
connection to server at "dedivirt3589.your-server.de" (2a01:4f8:1c1e:f308::2), port 5432 failed: FATAL: no pg_hba.conf entry for host "2a01:4f8:c0c:f764::1", user "mapbender", database "mapbender", no encryption
at vendor/doctrine/dbal/src/Driver/PDO/PgSQL/Driver.php:34
at PDO->__construct()
(vendor/doctrine/dbal/src/Driver/PDO/PgSQL/Driver.php:34)
at Doctrine\DBAL\Driver\PDO\PgSQL\Driver->connect()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:29)
at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
(vendor/doctrine/dbal/src/Logging/Driver.php:34)
at Doctrine\DBAL\Logging\Driver->connect()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:29)
at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
(vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php:37)
at Symfony\Bridge\Doctrine\Middleware\Debug\Driver->connect()
(vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:29)
at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
(mapbender/src/Mapbender/CoreBundle/Component/EventListener/SqliteConnectionMiddleWare.php:19)
at Mapbender\CoreBundle\Component\EventListener\SqliteConnectionMiddleWare->connect()
(vendor/doctrine/dbal/src/Connection.php:378)
at Doctrine\DBAL\Connection->connect()
(vendor/doctrine/dbal/src/Connection.php:1655)
at Doctrine\DBAL\Connection->getWrappedConnection()
(vendor/doctrine/dbal/src/Connection.php:1082)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/src/Persisters/Entity/BasicEntityPersister.php:969)
at Doctrine\ORM\Persisters\Entity\BasicEntityPersister->loadAll()
(vendor/doctrine/orm/src/EntityRepository.php:225)
at Doctrine\ORM\EntityRepository->findBy()
(mapbender/src/Mapbender/CoreBundle/Controller/WelcomeController.php:44)
at Mapbender\CoreBundle\Controller\WelcomeController->list()
(vendor/symfony/http-kernel/HttpKernel.php:181)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:197)
at Symfony\Component\HttpKernel\Kernel->handle()
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/var/www/mapbender/vendor/autoload_runtime.php')
(public/index.php:5)
|