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