Proxy
Troubleshooting
Common issues and solutions for HashCore Proxy deployment and operation.
Startup Issues
# Check container status
docker compose ps
# View logs
docker compose logs
# View logs for a specific service
docker compose logs proxy
docker compose logs configurator
docker compose logs grafana
Port Conflicts
If the default ports are already in use on your system, change them in the docker-compose.yml file.
Important: Ports are specified in the format "HOST_PORT:CONTAINER_PORT".
Only modify the left value (the port accessible on your machine). The right value (container’s internal port) must not be changed.
Current example:
- Configurator:
5001:5001→5002:5001 - Grafana:
5000:3000→5050:3000 - Proxy API:
5010:5010→5020:5010
Permission Issues (Linux)
# Add user to the Docker group
sudo usermod -aG docker $USER
# Re-login to apply the changes