Symfony Exception

PDOException PDOException QueryException

HTTP 500 Internal Server Error

SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for admin-arshahamrah-db failed: Name or service not known (Connection: mysql, SQL: insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, 172.17.60.4, Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com), 2025-04-05 01:43:38, http://arshahamrah.com/user/profile/add-item-to-fav/341, front.user.profile.add-item-to-fav, {"id":"341"}, 2025-04-05 01:43:38))

Exceptions 3

Illuminate\Database\ QueryException

Show exception properties
Illuminate\Database\QueryException {#2032
  +errorInfo: array:3 [
    0 => "HY000"
    1 => 2002
    2 => "php_network_getaddresses: getaddrinfo for admin-arshahamrah-db failed: Name or service not known"
  ]
  +connectionName: "mysql"
  #sql: "insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)"
  #bindings: array:8 [
    0 => null
    1 => "172.17.60.4"
    2 => "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
    3 => "2025-04-05 01:43:38"
    4 => "http://arshahamrah.com/user/profile/add-item-to-fav/341"
    5 => "front.user.profile.add-item-to-fav"
    6 => "{"id":"341"}"
    7 => "2025-04-05 01:43:38"
  ]
}
  1.                 throw new UniqueConstraintViolationException(
  2.                     $this->getName(), $query$this->prepareBindings($bindings), $e
  3.                 );
  4.             }
  5.             throw new QueryException(
  6.                 $this->getName(), $query$this->prepareBindings($bindings), $e
  7.             );
  8.         }
  9.     }
  1.     protected function tryAgainIfCausedByLostConnection(QueryException $e$query$bindingsClosure $callback)
  2.     {
  3.         if ($this->causedByLostConnection($e->getPrevious())) {
  4.             $this->reconnect();
  5.             return $this->runQueryCallback($query$bindings$callback);
  6.         }
  7.         throw $e;
  8.     }
  1.     {
  2.         if ($this->transactions >= 1) {
  3.             throw $e;
  4.         }
  5.         return $this->tryAgainIfCausedByLostConnection(
  6.             $e$query$bindings$callback
  7.         );
  8.     }
  9.     /**
  1.         // caused by a connection that has been lost. If that is the cause, we'll try
  2.         // to re-establish connection and re-run the query with a fresh connection.
  3.         try {
  4.             $result $this->runQueryCallback($query$bindings$callback);
  5.         } catch (QueryException $e) {
  6.             $result $this->handleQueryException(
  7.                 $e$query$bindings$callback
  8.             );
  9.         }
  10.         // Once we have run the query we will calculate the time that it took to run and
  1.      * @param  string|null  $sequence
  2.      * @return bool
  3.      */
  4.     public function insert($query$bindings = [], $sequence null)
  5.     {
  6.         return $this->run($query$bindings, function ($query$bindings) use ($sequence) {
  7.             if ($this->pretending()) {
  8.                 return true;
  9.             }
  10.             $statement $this->getPdo()->prepare($query);
  1.         $this->applyBeforeQueryCallbacks();
  2.         // Finally, we will run this query against the database connection and return
  3.         // the results. We will need to also flatten these bindings before running
  4.         // the query so they are all in one huge, flattened array for execution.
  5.         return $this->connection->insert(
  6.             $this->grammar->compileInsert($this$values),
  7.             $this->cleanBindings(Arr::flatten($values1))
  8.         );
  9.     }
Builder->insert(array(array('user_id' => null, 'ip_address' => '172.17.60.4', 'user_agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', 'visit_date' => object(Carbon), 'destination_link' => 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'route_name' => 'front.user.profile.add-item-to-fav', 'route_value' => '{"id":"341"}', 'created_at' => object(Carbon)))) in /var/www/html/app/Http/Middleware/RecordVisitorStatistics.php (line 23)
  1.         $userAgent $request->header('User-Agent');
  2.         $visitDate now();
  3.         $routeName Route::currentRouteName();
  4.         $routeValue $request->route() ? json_encode($request->route()->parameters()) : null;
  5.         DB::table('visitor_statistics')->insert([
  6.             'user_id' => $user_id,
  7.             'ip_address' => $ipAddress,
  8.             'user_agent' => $userAgent,
  9.             'visit_date' => $visitDate,
  10.             'destination_link' => $destinationLink,
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
Kernel->handle(object(Request)) in /var/www/html/public/index.php (line 60)
  1.     return __DIR__;
  2. });
  3. */
  4. $kernel $app->make(Kernel::class);
  5. $response $kernel->handle(
  6.     $request Request::capture()
  7. )->send();
  8. $kernel->terminate($request$response);

PDOException

SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for admin-arshahamrah-db failed: Name or service not known

  1.      * @param  array  $options
  2.      * @return \PDO
  3.      */
  4.     protected function createPdoConnection($dsn$username$password$options)
  5.     {
  6.         return new PDO($dsn$username$password$options);
  7.     }
  8.     /**
  9.      * Handle an exception that occurred during connect execution.
  10.      *
  1.      * @param  array  $options
  2.      * @return \PDO
  3.      */
  4.     protected function createPdoConnection($dsn$username$password$options)
  5.     {
  6.         return new PDO($dsn$username$password$options);
  7.     }
  8.     /**
  9.      * Handle an exception that occurred during connect execution.
  10.      *
  1.      * @throws \Exception
  2.      */
  3.     protected function tryAgainIfCausedByLostConnection(Throwable $e$dsn$username$password$options)
  4.     {
  5.         if ($this->causedByLostConnection($e)) {
  6.             return $this->createPdoConnection($dsn$username$password$options);
  7.         }
  8.         throw $e;
  9.     }
  1.         try {
  2.             return $this->createPdoConnection(
  3.                 $dsn$username$password$options
  4.             );
  5.         } catch (Exception $e) {
  6.             return $this->tryAgainIfCausedByLostConnection(
  7.                 $e$dsn$username$password$options
  8.             );
  9.         }
  10.     }
  1.         $options $this->getOptions($config);
  2.         // We need to grab the PDO options that should be used while making the brand
  3.         // new connection instance. The PDO options control various aspects of the
  4.         // connection's behavior, and some might be specified by the developers.
  5.         $connection $this->createConnection($dsn$config$options);
  6.         if (! empty($config['database'])) {
  7.             $connection->exec("use `{$config['database']}`;");
  8.         }
  1.         return function () use ($config) {
  2.             foreach (Arr::shuffle($this->parseHosts($config)) as $host) {
  3.                 $config['host'] = $host;
  4.                 try {
  5.                     return $this->createConnector($config)->connect($config);
  6.                 } catch (PDOException $e) {
  7.                     continue;
  8.                 }
  9.             }
ConnectionFactory->Illuminate\Database\Connectors\{closure}()
  1.      * @return \PDO
  2.      */
  3.     public function getPdo()
  4.     {
  5.         if ($this->pdo instanceof Closure) {
  6.             return $this->pdo call_user_func($this->pdo);
  7.         }
  8.         return $this->pdo;
  9.     }
  1.         return $this->run($query$bindings, function ($query$bindings) use ($sequence) {
  2.             if ($this->pretending()) {
  3.                 return true;
  4.             }
  5.             $statement $this->getPdo()->prepare($query);
  6.             $this->bindValues($statement$this->prepareBindings($bindings));
  7.             $this->recordsHaveBeenModified();
  1.     {
  2.         // To execute the statement, we'll simply call the callback, which will actually
  3.         // run the SQL against the PDO connection. Then we can calculate the time it
  4.         // took to execute and log the query SQL, bindings and time in our memory.
  5.         try {
  6.             return $callback($query$bindings);
  7.         }
  8.         // If an exception occurs when attempting to run a query, we'll format the error
  9.         // message to include the bindings with SQL, which will make this exception a
  10.         // lot more helpful to the developer instead of just the database's errors.
  1.     protected function tryAgainIfCausedByLostConnection(QueryException $e$query$bindingsClosure $callback)
  2.     {
  3.         if ($this->causedByLostConnection($e->getPrevious())) {
  4.             $this->reconnect();
  5.             return $this->runQueryCallback($query$bindings$callback);
  6.         }
  7.         throw $e;
  8.     }
  1.     {
  2.         if ($this->transactions >= 1) {
  3.             throw $e;
  4.         }
  5.         return $this->tryAgainIfCausedByLostConnection(
  6.             $e$query$bindings$callback
  7.         );
  8.     }
  9.     /**
  1.         // caused by a connection that has been lost. If that is the cause, we'll try
  2.         // to re-establish connection and re-run the query with a fresh connection.
  3.         try {
  4.             $result $this->runQueryCallback($query$bindings$callback);
  5.         } catch (QueryException $e) {
  6.             $result $this->handleQueryException(
  7.                 $e$query$bindings$callback
  8.             );
  9.         }
  10.         // Once we have run the query we will calculate the time that it took to run and
  1.      * @param  string|null  $sequence
  2.      * @return bool
  3.      */
  4.     public function insert($query$bindings = [], $sequence null)
  5.     {
  6.         return $this->run($query$bindings, function ($query$bindings) use ($sequence) {
  7.             if ($this->pretending()) {
  8.                 return true;
  9.             }
  10.             $statement $this->getPdo()->prepare($query);
  1.         $this->applyBeforeQueryCallbacks();
  2.         // Finally, we will run this query against the database connection and return
  3.         // the results. We will need to also flatten these bindings before running
  4.         // the query so they are all in one huge, flattened array for execution.
  5.         return $this->connection->insert(
  6.             $this->grammar->compileInsert($this$values),
  7.             $this->cleanBindings(Arr::flatten($values1))
  8.         );
  9.     }
Builder->insert(array(array('user_id' => null, 'ip_address' => '172.17.60.4', 'user_agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', 'visit_date' => object(Carbon), 'destination_link' => 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'route_name' => 'front.user.profile.add-item-to-fav', 'route_value' => '{"id":"341"}', 'created_at' => object(Carbon)))) in /var/www/html/app/Http/Middleware/RecordVisitorStatistics.php (line 23)
  1.         $userAgent $request->header('User-Agent');
  2.         $visitDate now();
  3.         $routeName Route::currentRouteName();
  4.         $routeValue $request->route() ? json_encode($request->route()->parameters()) : null;
  5.         DB::table('visitor_statistics')->insert([
  6.             'user_id' => $user_id,
  7.             'ip_address' => $ipAddress,
  8.             'user_agent' => $userAgent,
  9.             'visit_date' => $visitDate,
  10.             'destination_link' => $destinationLink,
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
Kernel->handle(object(Request)) in /var/www/html/public/index.php (line 60)
  1.     return __DIR__;
  2. });
  3. */
  4. $kernel $app->make(Kernel::class);
  5. $response $kernel->handle(
  6.     $request Request::capture()
  7. )->send();
  8. $kernel->terminate($request$response);

PDOException

PDO::__construct(): php_network_getaddresses: getaddrinfo for admin-arshahamrah-db failed: Name or service not known

  1.      * @param  array  $options
  2.      * @return \PDO
  3.      */
  4.     protected function createPdoConnection($dsn$username$password$options)
  5.     {
  6.         return new PDO($dsn$username$password$options);
  7.     }
  8.     /**
  9.      * Handle an exception that occurred during connect execution.
  10.      *
  1.      * @param  array  $options
  2.      * @return \PDO
  3.      */
  4.     protected function createPdoConnection($dsn$username$password$options)
  5.     {
  6.         return new PDO($dsn$username$password$options);
  7.     }
  8.     /**
  9.      * Handle an exception that occurred during connect execution.
  10.      *
  1.      * @throws \Exception
  2.      */
  3.     protected function tryAgainIfCausedByLostConnection(Throwable $e$dsn$username$password$options)
  4.     {
  5.         if ($this->causedByLostConnection($e)) {
  6.             return $this->createPdoConnection($dsn$username$password$options);
  7.         }
  8.         throw $e;
  9.     }
  1.         try {
  2.             return $this->createPdoConnection(
  3.                 $dsn$username$password$options
  4.             );
  5.         } catch (Exception $e) {
  6.             return $this->tryAgainIfCausedByLostConnection(
  7.                 $e$dsn$username$password$options
  8.             );
  9.         }
  10.     }
  1.         $options $this->getOptions($config);
  2.         // We need to grab the PDO options that should be used while making the brand
  3.         // new connection instance. The PDO options control various aspects of the
  4.         // connection's behavior, and some might be specified by the developers.
  5.         $connection $this->createConnection($dsn$config$options);
  6.         if (! empty($config['database'])) {
  7.             $connection->exec("use `{$config['database']}`;");
  8.         }
  1.         return function () use ($config) {
  2.             foreach (Arr::shuffle($this->parseHosts($config)) as $host) {
  3.                 $config['host'] = $host;
  4.                 try {
  5.                     return $this->createConnector($config)->connect($config);
  6.                 } catch (PDOException $e) {
  7.                     continue;
  8.                 }
  9.             }
ConnectionFactory->Illuminate\Database\Connectors\{closure}()
  1.      * @return \PDO
  2.      */
  3.     public function getPdo()
  4.     {
  5.         if ($this->pdo instanceof Closure) {
  6.             return $this->pdo call_user_func($this->pdo);
  7.         }
  8.         return $this->pdo;
  9.     }
  1.         return $this->run($query$bindings, function ($query$bindings) use ($sequence) {
  2.             if ($this->pretending()) {
  3.                 return true;
  4.             }
  5.             $statement $this->getPdo()->prepare($query);
  6.             $this->bindValues($statement$this->prepareBindings($bindings));
  7.             $this->recordsHaveBeenModified();
  1.     {
  2.         // To execute the statement, we'll simply call the callback, which will actually
  3.         // run the SQL against the PDO connection. Then we can calculate the time it
  4.         // took to execute and log the query SQL, bindings and time in our memory.
  5.         try {
  6.             return $callback($query$bindings);
  7.         }
  8.         // If an exception occurs when attempting to run a query, we'll format the error
  9.         // message to include the bindings with SQL, which will make this exception a
  10.         // lot more helpful to the developer instead of just the database's errors.
  1.     protected function tryAgainIfCausedByLostConnection(QueryException $e$query$bindingsClosure $callback)
  2.     {
  3.         if ($this->causedByLostConnection($e->getPrevious())) {
  4.             $this->reconnect();
  5.             return $this->runQueryCallback($query$bindings$callback);
  6.         }
  7.         throw $e;
  8.     }
  1.     {
  2.         if ($this->transactions >= 1) {
  3.             throw $e;
  4.         }
  5.         return $this->tryAgainIfCausedByLostConnection(
  6.             $e$query$bindings$callback
  7.         );
  8.     }
  9.     /**
  1.         // caused by a connection that has been lost. If that is the cause, we'll try
  2.         // to re-establish connection and re-run the query with a fresh connection.
  3.         try {
  4.             $result $this->runQueryCallback($query$bindings$callback);
  5.         } catch (QueryException $e) {
  6.             $result $this->handleQueryException(
  7.                 $e$query$bindings$callback
  8.             );
  9.         }
  10.         // Once we have run the query we will calculate the time that it took to run and
  1.      * @param  string|null  $sequence
  2.      * @return bool
  3.      */
  4.     public function insert($query$bindings = [], $sequence null)
  5.     {
  6.         return $this->run($query$bindings, function ($query$bindings) use ($sequence) {
  7.             if ($this->pretending()) {
  8.                 return true;
  9.             }
  10.             $statement $this->getPdo()->prepare($query);
  1.         $this->applyBeforeQueryCallbacks();
  2.         // Finally, we will run this query against the database connection and return
  3.         // the results. We will need to also flatten these bindings before running
  4.         // the query so they are all in one huge, flattened array for execution.
  5.         return $this->connection->insert(
  6.             $this->grammar->compileInsert($this$values),
  7.             $this->cleanBindings(Arr::flatten($values1))
  8.         );
  9.     }
Builder->insert(array(array('user_id' => null, 'ip_address' => '172.17.60.4', 'user_agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', 'visit_date' => object(Carbon), 'destination_link' => 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'route_name' => 'front.user.profile.add-item-to-fav', 'route_value' => '{"id":"341"}', 'created_at' => object(Carbon)))) in /var/www/html/app/Http/Middleware/RecordVisitorStatistics.php (line 23)
  1.         $userAgent $request->header('User-Agent');
  2.         $visitDate now();
  3.         $routeName Route::currentRouteName();
  4.         $routeValue $request->route() ? json_encode($request->route()->parameters()) : null;
  5.         DB::table('visitor_statistics')->insert([
  6.             'user_id' => $user_id,
  7.             'ip_address' => $ipAddress,
  8.             'user_agent' => $userAgent,
  9.             'visit_date' => $visitDate,
  10.             'destination_link' => $destinationLink,
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.         $this->requestStartedAt Carbon::now();
  2.         try {
  3.             $request->enableHttpMethodParameterOverride();
  4.             $response $this->sendRequestThroughRouter($request);
  5.         } catch (Throwable $e) {
  6.             $this->reportException($e);
  7.             $response $this->renderException($request$e);
  8.         }
Kernel->handle(object(Request)) in /var/www/html/public/index.php (line 60)
  1.     return __DIR__;
  2. });
  3. */
  4. $kernel $app->make(Kernel::class);
  5. $response $kernel->handle(
  6.     $request Request::capture()
  7. )->send();
  8. $kernel->terminate($request$response);

Stack Traces 3

[3/3] QueryException
Illuminate\Database\QueryException:
SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for admin-arshahamrah-db failed: Name or service not known (Connection: mysql, SQL: insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, 172.17.60.4, Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com), 2025-04-05 01:43:38, http://arshahamrah.com/user/profile/add-item-to-fav/341, front.user.profile.add-item-to-fav, {"id":"341"}, 2025-04-05 01:43:38))

  at /var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:829
  at Illuminate\Database\Connection->runQueryCallback('insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:983)
  at Illuminate\Database\Connection->tryAgainIfCausedByLostConnection(object(QueryException), 'insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:962)
  at Illuminate\Database\Connection->handleQueryException(object(QueryException), 'insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:785)
  at Illuminate\Database\Connection->run('insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/MySqlConnection.php:34)
  at Illuminate\Database\MySqlConnection->insert('insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:3498)
  at Illuminate\Database\Query\Builder->insert(array(array('user_id' => null, 'ip_address' => '172.17.60.4', 'user_agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', 'visit_date' => object(Carbon), 'destination_link' => 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'route_name' => 'front.user.profile.add-item-to-fav', 'route_value' => '{"id":"341"}', 'created_at' => object(Carbon))))
     (/var/www/html/app/Http/Middleware/RecordVisitorStatistics.php:23)
  at App\Http\Middleware\RecordVisitorStatistics->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/www/html/public/index.php:60)                
[2/3] PDOException
PDOException:
SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo for admin-arshahamrah-db failed: Name or service not known

  at /var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:65
  at PDO->__construct('mysql:host=admin-arshahamrah-db;port=3306;dbname=eager_bhaskara', 'root', object(SensitiveParameterValue), array(0, 2, 0, false, false))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:65)
  at Illuminate\Database\Connectors\Connector->createPdoConnection('mysql:host=admin-arshahamrah-db;port=3306;dbname=eager_bhaskara', 'root', '6Nt2iJqWLxJaL889xHDbf24x', array(0, 2, 0, false, false))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:83)
  at Illuminate\Database\Connectors\Connector->tryAgainIfCausedByLostConnection(object(PDOException), 'mysql:host=admin-arshahamrah-db;port=3306;dbname=eager_bhaskara', 'root', '6Nt2iJqWLxJaL889xHDbf24x', array(0, 2, 0, false, false))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:48)
  at Illuminate\Database\Connectors\Connector->createConnection('mysql:host=admin-arshahamrah-db;port=3306;dbname=eager_bhaskara', array('driver' => 'mysql', 'host' => 'admin-arshahamrah-db', 'port' => '3306', 'database' => 'eager_bhaskara', 'username' => 'root', 'password' => '6Nt2iJqWLxJaL889xHDbf24x', 'unix_socket' => '', 'charset' => 'utf8mb4', 'collation' => 'utf8mb4_unicode_ci', 'prefix' => '', 'prefix_indexes' => true, 'strict' => false, 'engine' => null, 'options' => array(), 'name' => 'mysql'), array(0, 2, 0, false, false))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php:24)
  at Illuminate\Database\Connectors\MySqlConnector->connect(array('driver' => 'mysql', 'host' => 'admin-arshahamrah-db', 'port' => '3306', 'database' => 'eager_bhaskara', 'username' => 'root', 'password' => '6Nt2iJqWLxJaL889xHDbf24x', 'unix_socket' => '', 'charset' => 'utf8mb4', 'collation' => 'utf8mb4_unicode_ci', 'prefix' => '', 'prefix_indexes' => true, 'strict' => false, 'engine' => null, 'options' => array(), 'name' => 'mysql'))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php:184)
  at Illuminate\Database\Connectors\ConnectionFactory->Illuminate\Database\Connectors\{closure}()
  at call_user_func(object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:1339)
  at Illuminate\Database\Connection->getPdo()
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/MySqlConnection.php:39)
  at Illuminate\Database\MySqlConnection->Illuminate\Database\{closure}('insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:816)
  at Illuminate\Database\Connection->runQueryCallback('insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:983)
  at Illuminate\Database\Connection->tryAgainIfCausedByLostConnection(object(QueryException), 'insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:962)
  at Illuminate\Database\Connection->handleQueryException(object(QueryException), 'insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:785)
  at Illuminate\Database\Connection->run('insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/MySqlConnection.php:34)
  at Illuminate\Database\MySqlConnection->insert('insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:3498)
  at Illuminate\Database\Query\Builder->insert(array(array('user_id' => null, 'ip_address' => '172.17.60.4', 'user_agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', 'visit_date' => object(Carbon), 'destination_link' => 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'route_name' => 'front.user.profile.add-item-to-fav', 'route_value' => '{"id":"341"}', 'created_at' => object(Carbon))))
     (/var/www/html/app/Http/Middleware/RecordVisitorStatistics.php:23)
  at App\Http\Middleware\RecordVisitorStatistics->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/www/html/public/index.php:60)                
[1/3] PDOException
PDOException:
PDO::__construct(): php_network_getaddresses: getaddrinfo for admin-arshahamrah-db failed: Name or service not known

  at /var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:65
  at PDO->__construct('mysql:host=admin-arshahamrah-db;port=3306;dbname=eager_bhaskara', 'root', object(SensitiveParameterValue), array(0, 2, 0, false, false))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:65)
  at Illuminate\Database\Connectors\Connector->createPdoConnection('mysql:host=admin-arshahamrah-db;port=3306;dbname=eager_bhaskara', 'root', '6Nt2iJqWLxJaL889xHDbf24x', array(0, 2, 0, false, false))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:83)
  at Illuminate\Database\Connectors\Connector->tryAgainIfCausedByLostConnection(object(PDOException), 'mysql:host=admin-arshahamrah-db;port=3306;dbname=eager_bhaskara', 'root', '6Nt2iJqWLxJaL889xHDbf24x', array(0, 2, 0, false, false))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/Connector.php:48)
  at Illuminate\Database\Connectors\Connector->createConnection('mysql:host=admin-arshahamrah-db;port=3306;dbname=eager_bhaskara', array('driver' => 'mysql', 'host' => 'admin-arshahamrah-db', 'port' => '3306', 'database' => 'eager_bhaskara', 'username' => 'root', 'password' => '6Nt2iJqWLxJaL889xHDbf24x', 'unix_socket' => '', 'charset' => 'utf8mb4', 'collation' => 'utf8mb4_unicode_ci', 'prefix' => '', 'prefix_indexes' => true, 'strict' => false, 'engine' => null, 'options' => array(), 'name' => 'mysql'), array(0, 2, 0, false, false))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/MySqlConnector.php:24)
  at Illuminate\Database\Connectors\MySqlConnector->connect(array('driver' => 'mysql', 'host' => 'admin-arshahamrah-db', 'port' => '3306', 'database' => 'eager_bhaskara', 'username' => 'root', 'password' => '6Nt2iJqWLxJaL889xHDbf24x', 'unix_socket' => '', 'charset' => 'utf8mb4', 'collation' => 'utf8mb4_unicode_ci', 'prefix' => '', 'prefix_indexes' => true, 'strict' => false, 'engine' => null, 'options' => array(), 'name' => 'mysql'))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectionFactory.php:184)
  at Illuminate\Database\Connectors\ConnectionFactory->Illuminate\Database\Connectors\{closure}()
  at call_user_func(object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:1339)
  at Illuminate\Database\Connection->getPdo()
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/MySqlConnection.php:39)
  at Illuminate\Database\MySqlConnection->Illuminate\Database\{closure}('insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:816)
  at Illuminate\Database\Connection->runQueryCallback('insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:983)
  at Illuminate\Database\Connection->tryAgainIfCausedByLostConnection(object(QueryException), 'insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:962)
  at Illuminate\Database\Connection->handleQueryException(object(QueryException), 'insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Connection.php:785)
  at Illuminate\Database\Connection->run('insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/MySqlConnection.php:34)
  at Illuminate\Database\MySqlConnection->insert('insert into `visitor_statistics` (`user_id`, `ip_address`, `user_agent`, `visit_date`, `destination_link`, `route_name`, `route_value`, `created_at`) values (?, ?, ?, ?, ?, ?, ?, ?)', array(null, '172.17.60.4', 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', object(Carbon), 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'front.user.profile.add-item-to-fav', '{"id":"341"}', object(Carbon)))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Database/Query/Builder.php:3498)
  at Illuminate\Database\Query\Builder->insert(array(array('user_id' => null, 'ip_address' => '172.17.60.4', 'user_agent' => 'Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)', 'visit_date' => object(Carbon), 'destination_link' => 'http://arshahamrah.com/user/profile/add-item-to-fav/341', 'route_name' => 'front.user.profile.add-item-to-fav', 'route_value' => '{"id":"341"}', 'created_at' => object(Carbon))))
     (/var/www/html/app/Http/Middleware/RecordVisitorStatistics.php:23)
  at App\Http\Middleware\RecordVisitorStatistics->handle(object(Request), object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:183)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:119)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:175)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/var/www/html/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:144)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/var/www/html/public/index.php:60)