> For the complete documentation index, see [llms.txt](https://blocx.gitbook.io/blocx./llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://blocx.gitbook.io/blocx./validator-node/troubleshooting.md).

# Troubleshooting

### Common Errors and Solutions

**Error: "Failed to initialize execution client"**

**Symptoms**:

* Error message during initialization
* Node fails to start

**Solutions**:

1. Ensure genesis data is present:

   ```bash
   ls -la el-cl-genesis-data
   ```
2. Try unpacking the genesis data again:

   ```bash
   tar -xzvf el-cl-genesis-data.tar.gz
   ```
3. Try running the initialization again (option 2 in the menu).

**Error: "Failed to start validator node"**

**Symptoms**:

* Node containers fail to start
* Docker Compose error messages

**Solutions**:

1. Check for port conflicts:

   ```bash
   sudo netstat -tulpn | grep -E '8545|5052|9000|30303'
   ```
2. Ensure Docker is running:

   ```bash
   sudo systemctl status docker
   ```
3. Check Docker Compose logs:

   ```bash
   docker compose -f compose-validator.yaml logs
   ```

### Sync Issues

**Problem: Node is not syncing or syncing extremely slowly**

**Symptoms**:

* No peers are connected
* Sync progress is stalled
* Progress percentage not increasing

**Solutions**:

1. Check your internet connection:

   ```
   ping -c 5 google.com
   ```
2. Verify DNS resolution:

   ```
   nslookup google.com
   ```
3. Ensure ports are open on your firewall:

   ```
   sudo ufw status
   ```
4. Restart the node:

   ```
   docker compose -f compose-validator.yaml down
   docker compose -f compose-validator.yaml up -d
   ```

### Connection Problems

**Problem: Cannot connect to peers**

**Symptoms**:

* Low peer count
* Connection errors in logs

**Solutions**:

1. Check if ports are properly forwarded on your router/firewall.
2. Verify your public IP is correctly configured:

   ```bash
   curl https://ipinfo.io/ip
   ```
3. Ensure your ISP is not blocking peer-to-peer connections.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://blocx.gitbook.io/blocx./validator-node/troubleshooting.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
