Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Auf dieser Seite werden einige häufige Blockchain Node Engine-Fehler beschrieben und wie sie behoben werden können.
Host konnte nicht aufgelöst werden
Der folgende Fehler tritt auf, wenn Sie versuchen, den Blockchain-Knoten zu verwenden, während er noch erstellt wird:
Could not resolve host: json-rpc.abc1234.blockchainnodeengine.com
Warten Sie, bis der Knoten den Status „RUNNING“ (AKTIV) erreicht hat, um dieses Problem zu beheben.
Sie können den Status wie unter Blockchain-Knoten auflisten beschrieben abrufen.
400-Fehler: Methode lässt keine nicht registrierten Aufrufer zu
Der folgende Fehler tritt auf, wenn Sie versuchen, den Blockchain-Knoten ohne API-Schlüssel zu verwenden:
400 error: Method doesn't allow unregistered callers (callers without
established identity). Please use API Key or other form of API consumer
identity to call this API.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Schwer verständlich","hardToUnderstand","thumb-down"],["Informationen oder Beispielcode falsch","incorrectInformationOrSampleCode","thumb-down"],["Benötigte Informationen/Beispiele nicht gefunden","missingTheInformationSamplesINeed","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2025-09-04 (UTC)."],[[["\u003cp\u003eThis page details common errors encountered when using Blockchain Node Engine.\u003c/p\u003e\n"],["\u003cp\u003eA "Could not resolve host" error indicates the node is not yet in a RUNNING state and requires waiting for completion.\u003c/p\u003e\n"],["\u003cp\u003eA "400 error: Method doesn't allow unregistered callers" occurs when an API key is missing, which needs to be created and used.\u003c/p\u003e\n"],["\u003cp\u003eTo determine if a full node has finished syncing, check for a \u003ccode\u003efalse\u003c/code\u003e response when using \u003ccode\u003eeth_syncing\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eTo check if an archive node has finished syncing, look for the \u003ccode\u003eblock_hashes\u003c/code\u003e value using the metrics endpoint \u003ccode\u003eexecutionClientPrometheusMetricsApiEndpoint\u003c/code\u003e.\u003c/p\u003e\n"]]],[],null,["# Troubleshooting\n\nThis page describes some common Blockchain Node Engine errors and how to fix them.\n\nCould not resolve host\n----------------------\n\nThe following error occurs when you try and use the blockchain node while\nit is still being created:\n\n`Could not resolve host: json-rpc.abc1234.blockchainnodeengine.com`\n\nTo resolve this issue, wait for the node to reach a RUNNING state.\nYou can see the status as described in\n[List blockchain nodes](/blockchain-node-engine/docs/node-list).\n\n400 error: Method doesn't allow unregistered callers\n----------------------------------------------------\n\nThe following error occurs when you try and use the blockchain node without an\nAPI key:\n\n`400 error: Method doesn't allow unregistered callers (callers without\nestablished identity). Please use API Key or other form of API consumer\nidentity to call this API.`\n\nTo resolve this issue, see:\n[Create an API key](/blockchain-node-engine/docs/using-nodes#create-api-key)\n\nI don't know if my node has finished syncing\n--------------------------------------------\n\nTo resolve this issue, do one of the following:\n\n- **Full nodes:** Make a call to `eth_syncing` and if you get a `false` response,\n then it is done.\n\n curl -H POST -H \"Content-Type: application/json\" -d '{\"jsonrpc\":\"2.0\",\"id\":2586,\"method\":\"eth_syncing\",\"params\":[]}]}' https://\u003cexecutionClientJsonRpcEndpoint\u003e?key=\u003cAPI_KEY\u003e\n\n {\"jsonrpc\":\"2.0\",\"id\":2586,\"result\":false}\n\n- **Archive nodes:** Query the metrics endpoint\n `executionClientPrometheusMetricsApiEndpoint`:\n\n curl -H \"Content-Type: application/json\" 'http://\u003cexecutionClientPrometheusMetricsApiEndpoint\u003e/debug/metrics/prometheus?key=\u003cAPI_KEY\u003e'\n\n Look for the `block_hashes` value in the response."]]