Q: My node is unreachable even though it’s running. What could be wrong?
A: A common issue is an IP address mismatch between your environment file and your server’s actual public IP. This happens when:
- Your
envfile hasIPV4=X.X.X.X - But your server is actually registering from a different IP address
- DNS records point to the env file IP, making the server unreachable
Fix
- Identify your server’s actual public IP address
- Update your
envfile to setIPV4=to the correct IP - Restart the stack:
docker compose --profile ndt --env-file env down
docker compose --profile ndt --env-file env up -d