Files
quorum-test-network/STARTUP_STATUS.md
2026-02-09 21:51:48 -08:00

1.9 KiB

Quorum Network Startup Status

Completed Steps

  1. DNS Configuration Fixed

    • WSL2 DNS updated with reliable servers (8.8.8.8, 8.8.4.4, 1.1.1.1)
    • DNS configuration added to all Docker Compose services
    • Docker can now pull images successfully
  2. Docker Compose Configuration

    • Removed obsolete version attribute
    • Added DNS servers to all 13 services
    • Configuration validated
  3. Image Pulling

    • Images are being pulled successfully
    • 8+ required images available locally

🚀 Starting the Network

The network startup process has been initiated. To check status:

# Check container status
docker compose ps

# View logs
docker compose logs

# List endpoints
./list.sh

📋 Services in the Network

  • Validators: validator1, validator2, validator3, validator4
  • RPC Node: rpcnode
  • EthSigner Proxy: ethsignerProxy
  • Explorer: Quorum Explorer
  • Blockscout: Block explorer with PostgreSQL
  • Monitoring: Prometheus, Grafana, Loki, Promtail

🌐 Expected Endpoints

Once all containers are running:

⚠️ Important Notes

  1. DNS Configuration: All services now have explicit DNS servers configured in docker-compose.yml
  2. Docker Desktop: If you're using Docker Desktop, you may still want to configure DNS in Docker Desktop settings for better performance (see URGENT_DOCKER_DNS_FIX.md)
  3. Startup Time: The network may take 1-2 minutes to fully start all services

🔧 Troubleshooting

If containers don't start:

# Check logs
docker compose logs [service-name]

# Restart services
docker compose restart

# Remove and recreate
docker compose down
docker compose up --detach