Error Codes
Complete reference for all Solo error codes, including troubleshooting steps and ownership classification.
This guide covers common issues you may encounter when using Solo and how to resolve them.
Use this page when something is failing and you need to diagnose or recover quickly.
If you are looking for setup or day-to-day usage guidance rather than failure diagnosis, start with these pages:
Every error Solo raises carries a structured code of the form SOLO-XXXX, an
ownership classification (User, Infrastructure, or Solo), and a retryable flag.
When a command fails with one of these codes, look it up in the
Error Codes reference for a plain-language
description of why it is thrown, along with its troubleshooting steps.
Codes are grouped by category — Configuration, Deployment, Component, Validation, System, and Internal. Solo’s CLI also prints a documentation link for each error (for example https://solo.hiero.org/docs/errors/SOLO-1001) that opens its page directly.
When a command fails with a coded error, Solo prints the code and message, suggested next steps, and a documentation link:
[SOLO-2002] A deployment named 'my-deployment' already exists. Please select a different name
→ Check existing deployments: solo deployment config list
→ Choose a different name for your deployment
Learn more: https://solo.hiero.org/docs/errors/SOLO-2002
In the terminal, this appears inside a bordered ERROR box, followed by a tip
suggesting solo deployment diagnostics logs or
solo deployment diagnostics report to gather more detail.
Note: Add
--devto a command to see the full error cause chain and stack traces instead of the summarized form — useful when filing a bug report.
Installation and upgrade failures are common, especially when older installs or previous deployments are still present.
You are likely hitting an installation or upgrade problem if:
solo fails to start after changing versions.solo one-shot single deploy fails early with validation or environment
errors.EEXIST: file already exists pointing at
.../bin/solo. This happens when Solo is already installed under the other
npm package name (@hiero-ledger/solo and @hashgraph/solo are mirrors that
share the solo binary). See
Resolving an EEXIST package-name conflict.Confirm installation method
If you previously installed Solo via npm and are now using Homebrew, remove
the npm install to avoid conflicts. Solo is published under two npm names
(@hiero-ledger/solo and @hashgraph/solo), so remove both:
# Remove any npm-based Solo (if present)
if command -v npm >/dev/null 2>&1; then
npm uninstall -g @hiero-ledger/solo || true
npm uninstall -g @hashgraph/solo || true
fi
Then reinstall Solo using the steps in the
Quickstart. If a global npm install
fails with EEXIST because both package names are present, see
Resolving an EEXIST package-name conflict.
Verify system resources
Ensure your machine and Docker (or other container runtime) meet the
minimum requirements described in
System readiness.
If Docker Desktop or your container runtime is configured below these values, increase the allocations and retry the install or deploy.
Clean up previous deployments
If an upgrade or redeploy fails, first run a standard destroy:
solo one-shot single destroy
If pods remain in Pending, Init, ContainerCreating, or CrashLoopBackOff,
follow this sequence to identify the blocker.
Check readiness and restarts
# Show readiness and restart count for each pod
kubectl get pods -n "${SOLO_NAMESPACE}" \
-o custom-columns=NAME:.metadata.name,PHASE:.status.phase,READY:.status.containerStatuses[*].ready,RESTARTS:.status.containerStatuses[*].restartCount
Inspect pod events
# List all pods in your namespace
kubectl get pods -n "${SOLO_NAMESPACE}"
# Describe a specific pod to see events
kubectl describe pod -n "${SOLO_NAMESPACE}" <pod-name>
Map symptoms to likely causes
| Symptom | Likely cause | Next step |
|---|---|---|
Pending | Insufficient resources | Increase Docker memory/CPU allocation, then retry |
Pending | Storage issues | Check disk space, free space if needed, restart Docker |
CrashLoopBackOff | Container failing to start | Check pod logs: kubectl logs -n "${SOLO_NAMESPACE}" <pod-name> |
ImagePullBackOff | Can’t pull container images | Check internet connectivity and Docker Hub rate limits |
If a pod repeatedly restarts and enters CrashLoopBackOff, inspect current
logs, previous logs, and events:
# Current container logs
kubectl logs -n "${SOLO_NAMESPACE}" <pod-name>
# Previous container logs (captures startup failures)
kubectl logs -n "${SOLO_NAMESPACE}" <pod-name> --previous
# Pod events and failure reasons
kubectl describe pod -n "${SOLO_NAMESPACE}" <pod-name>
Common causes include invalid runtime configuration, missing dependencies, and insufficient memory.
Recommended remediation sequence:
If events mention OOMKilled or repeated liveness probe failures, increase
Docker CPU/RAM and retry.
If the issue started after a failed upgrade or deploy, run the cleanup steps in Old installation artifacts and redeploy.
If only one node is affected, refresh or restart it:
solo consensus node refresh --node-aliases node1 --deployment "${SOLO_DEPLOYMENT}"
# or
solo consensus node restart --deployment "${SOLO_DEPLOYMENT}"
Resource pressure is a common cause of Pending pods, slow startup, and
repeated restarts.
Check Kubernetes-level CPU and memory utilization:
kubectl top nodes
kubectl top pods -n "${SOLO_NAMESPACE}"
Check host and Docker disk usage:
# Host disk availability
df -h
# Docker disk usage (if using Docker)
docker system df
Compare against the recommended local baseline:
See System readiness for the recommended memory, CPU, and disk values.
If the relay or relay-ws pods are being killed (OOMKilled) or restarting due
to memory pressure, the sections below explain why this happens and how to
resolve it.
Solo ships with a default memory limit of 88Mi and an explicit V8 old-space
cap of 66MB (--max-old-space-size=66) for both the relay and WebSocket
services. These values are tuned for the one-shot development profile and may
not be sufficient for heavy workloads.
Since Node.js 12.7.0, Node.js reads the Linux cgroup memory limit set by Kubernetes to determine the V8 old-space heap size, rather than using the host’s physical memory. Based on V8’s internal heap sizing heuristics, this tends to be roughly ~50% of the container memory limit on 64-bit systems, though the exact value depends on V8 internals and varies at both ends of the memory spectrum.
A couple of things to be aware of:
--max-old-space-size is explicitly set (as in Solo’s default config),
it overrides the auto-sizing entirely — the cgroup-based detection only
kicks in when no explicit value is provided.This means:
NODE_OPTIONS unchanged, old space stays at 66 MB.NODE_OPTIONS, Node.js will attempt to auto-size old space
based on the container limit (roughly ~128 MB for a 256Mi pod on a modern
Node.js version).Create a custom values file (e.g., custom-relay-values.yaml) and pass it when
deploying:
# Option 1: Explicit old-space control (recommended for precise tuning)
relay:
resources:
limits:
memory: 256Mi
config:
NODE_OPTIONS: '--max-old-space-size=192'
ws:
resources:
limits:
memory: 256Mi
config:
NODE_OPTIONS: '--max-old-space-size=192'
# Option 2: Let Node.js auto-detect (simpler, old space ≈ 50% of limit)
# relay:
# resources:
# limits:
# memory: 256Mi
# config:
# NODE_OPTIONS: ""
# ws:
# resources:
# limits:
# memory: 256Mi
# config:
# NODE_OPTIONS: ""
Then deploy or upgrade with:
solo relay node add --deployment "${SOLO_DEPLOYMENT}" --values-file custom-relay-values.yaml
# or
solo relay node upgrade --deployment "${SOLO_DEPLOYMENT}" --values-file custom-relay-values.yaml
If you cannot connect to Solo network endpoints from your machine, use this sequence to isolate the issue.
Verify services and endpoints inside the cluster
# List all services
kubectl get svc -n "${SOLO_NAMESPACE}"
# Check if endpoints are populated
kubectl get endpoints -n "${SOLO_NAMESPACE}"
Use manual port forwarding (bypass automation)
If automatic port forwarding (from solo commands or your environment) is
not working, forward the required services manually. The local ports below
match the Solo 0.63+ defaults — adjust to any available port if needed:
# Consensus node (gRPC) — local port 35211 → service port 50211
kubectl port-forward svc/haproxy-node1-svc -n "${SOLO_NAMESPACE}" 35211:50211 &
# Explorer UI — local port 38080 → service port 8080
kubectl port-forward svc/hiero-explorer -n "${SOLO_NAMESPACE}" 38080:8080 &
# Mirror node ingress (REST API) — local port 38081 → service port 80
kubectl port-forward svc/mirror-1-rest -n "${SOLO_NAMESPACE}" 38081:80 &
# Mirror node gRPC
kubectl port-forward svc/mirror-1-grpc -n "${SOLO_NAMESPACE}" 5600:5600 &
# JSON-RPC relay — local port 37546 → service port 7546
kubectl port-forward svc/relay-node1-hedera-json-rpc-relay -n "${SOLO_NAMESPACE}" 37546:7546 &
Note: For Solo 0.62 and earlier, use local ports
50211,8080,5551, and7546respectively.
Confirm the expected endpoints and ports
After forwarding, connect to the local ports shown above (for example,
http://localhost:38080 for the explorer).
For the standard exposed endpoints after a successful one-shot deployment,
see
How to access exposed services (mirror node, relay, explorer).
If nodes are not forming consensus or transactions are not being processed, follow these steps.
Check node state and gossip logs:
# Download state information for a node
solo consensus state download --deployment "${SOLO_DEPLOYMENT}" --node-aliases node1
# Check logs for gossip-related issues
kubectl logs -n "${SOLO_NAMESPACE}" network-node-0 | grep -i gossip
Look for repeated connection failures, timeouts, or gossip disconnection messages.
Restart problematic nodes:
# Refresh a specific node
solo consensus node refresh --node-aliases node1 --deployment "${SOLO_DEPLOYMENT}"
# Or restart all nodes
solo consensus node restart --deployment "${SOLO_DEPLOYMENT}"
After restarting, submit a small test transaction and verify that it reaches consensus.
If the mirror node is not showing new transactions, first confirm that records are being generated and imported.
Verify the pinger is running
The --pinger flag should be enabled when deploying the mirror node. The
pinger sends periodic transactions so that record files are created.
# Check if pinger pod is running
kubectl get pods -n "${SOLO_NAMESPACE}" | grep pinger
Redeploy the mirror node with pinger enabled
If the pinger is missing or misconfigured:
# Destroy the existing mirror node
solo mirror node destroy --deployment "${SOLO_DEPLOYMENT}" --force
# Redeploy with pinger enabled
solo mirror node add \
--deployment "${SOLO_DEPLOYMENT}" \
--cluster-ref kind-${SOLO_CLUSTER_NAME} \
--enable-ingress \
--pinger
If you see errors such as repository name already exists, you likely have a
conflicting Helm repo entry.
List current Helm repositories:
helm repo list
Remove the conflicting repository:
helm repo remove <repo-name>
# Example: remove hedera-json-rpc-relay
helm repo remove hedera-json-rpc-relay
Re-run the Solo command that configures Helm after removing the conflict.
Problems starting or accessing the Kind cluster often present as cluster creation failures or missing nodes.
Cluster will not start or is in a bad state:
# Delete and recreate the cluster
kind delete cluster -n "${SOLO_CLUSTER_NAME}"
kind create cluster -n "${SOLO_CLUSTER_NAME}"
Docker context or daemon issues
Ensure Docker is running and the correct context is active:
# Check Docker is running
docker ps
# On macOS/Windows, ensure Docker Desktop is started.
# On Linux, ensure the Docker daemon is running:
sudo systemctl start docker
Previous Solo installations can cause conflicts during new deployments.
For the full teardown and full reset procedure, see the
Cleanup guide.
At a high level:
Run a standard destroy first:
solo one-shot single destroy
If destroy fails or Solo state is corrupted, perform a
full reset, which:
solo).~/.solo).These issues are specific to running Solo natively from Windows PowerShell.
Paths use backslashes. Solo stores its files under $env:USERPROFILE\.solo
on Windows - the equivalent of ~/.solo on macOS and Linux. When you copy a
command that uses ~/.solo/..., replace it with $env:USERPROFILE\.solo\....
For example:
Get-Content $env:USERPROFILE\.solo\logs\solo.log -Wait -Tail 50
Environment variable syntax differs. PowerShell does not use export. Set a
variable for the current session, or persist it for your user:
# Current session only
$env:SOLO_LOG_LEVEL = 'debug'
# Persist for your user (all future sessions)
[System.Environment]::SetEnvironmentVariable('SOLO_LOG_LEVEL', 'debug', 'User')
Removing a variable from the current session. Use Remove-Item on the
Env: drive. Setting $env:VAR = '' only blanks the value; it does not remove
the variable:
Remove-Item Env:\SOLO_LOG_LEVEL
Port-forwarding fails with listen EACCES. On Windows this is usually a
WinNAT reserved-port-range conflict. Solo automatically restarts the WinNAT
service and retries the port-forward. If the problem persists, restart WinNAT
manually from an elevated PowerShell prompt:
net stop winnat
net start winnat
Before seeking help, collect the following diagnostics so issues can be reproduced and analyzed.
Capture comprehensive diagnostics for the deployment:
solo deployment diagnostics all --deployment "${SOLO_DEPLOYMENT}"
This creates logs and diagnostic files under ~/.solo/logs/.
These files are often requested when reporting issues:
| File | Description |
|---|---|
~/.solo/logs/solo.log | Solo CLI command logs (human-readable, pino-pretty) |
~/.solo/logs/solo.ndjson | Solo CLI command logs (machine-readable JSON, for jq) |
Collect basic cluster and namespace information:
# Cluster info
kubectl cluster-info
# All resources in the Solo namespace
kubectl get all -n "${SOLO_NAMESPACE}"
# Recent events in the namespace (sorted by time)
kubectl get events -n "${SOLO_NAMESPACE}" --sort-by='.lastTimestamp'
# Node and pod resource usage
kubectl top nodes
kubectl top pods -n "${SOLO_NAMESPACE}"
Always start by examining logs:
# Solo logs
cat ~/.solo/logs/solo.log | tail -100
# Pod logs
kubectl logs -n "${SOLO_NAMESPACE}" <pod-name>
SOLO-XXXX error code.Report bugs or request features:
When opening an issue, include:
solo --version)Join the community for discussions and help:
#solo channelComplete reference for all Solo error codes, including troubleshooting steps and ownership classification.