coollabsio/coolify · error · RuntimeException

The Coolify host cannot be claimed.

Error message

The Coolify host cannot be claimed.

What it means

Error "The Coolify host cannot be claimed." thrown in coollabsio/coolify.

Source

Thrown at app/Livewire/Server/Transfer.php:172

                exportId: $this->exportId ?: data_get($this->server->server_metadata, 'transfer.export_id'),
                targetInstanceUrl: filled($this->targetUrl) ? rtrim($this->targetUrl, '/') : null,
            );
            $this->server->refresh();
            $this->lastResultJson = json_encode($result, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
            $this->dispatch('success', $result['message'] ?? 'Server marked as transferred.');
        } catch (Throwable $e) {
            handleError($e, $this);
        }
    }

    public function claimServer(ServerTransferClaimer $claimer): void
    {
        $this->ensureDevelopmentAvailability();

        try {
            $this->authorize('update', $this->server);
            if ($this->isLocalhost) {
                throw new \RuntimeException('The Coolify host cannot be claimed.');
            }

            $result = $claimer->claim(
                $this->server,
                writeRemote: $this->writeRemoteOnClaim,
                rebindSentinel: $this->rebindSentinelOnClaim,
            );
            $this->server->refresh();
            $this->lastResultJson = json_encode($result, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
            $this->lastWarnings = [];
            $this->dispatch('success', $result['message'] ?? 'Server claimed.');
        } catch (Throwable $e) {
            handleError($e, $this);
        }
    }

    public function render()
    {

View on GitHub (pinned to 70b9acc424)

When it happens

Trigger: Thrown at app/Livewire/Server/Transfer.php:172 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of coollabsio/coolify@70b9acc424 (2026-08-17). Data as JSON: /api/errors/24cf0cbae5945515. Report an issue: GitHub.