P2Poolv2 Node

Local mining pool dashboard and monitoring

📈
Pool Dashboard
Real-time pool status, shares, and peer overview
📇
Grafana Metrics
Infrastructure and pool metrics visualization
System Health
Real-time system resources monitoring

Connection Instructions

# --- Stratum mining (any worker) ---
# Point your miner to the stratum server.
$ # Pool URL: stratum+tcp://p2poolv2.lab.vinteum.org:3333
$ # Network: testnet4
 
# --- Mining rig connection ---
# Use any username (e.g., your wallet address or worker name).
# Password can be set to suggested difficulty (e.g., 'd=1000000')
# for rigs/firmware that don't support difficulty natively.
# Example cgminer/bfgminer:
$ # cgminer -o stratum+tcp://p2poolv2.lab.vinteum.org:3333 -u YOUR_ADDRESS -p d=1000000
 
# --- Troubleshooting ---
# Check if the stratum server is accepting connections
$ nc -zv p2poolv2.lab.vinteum.org 3333
 
# Check if the node is reachable on the P2P port
$ nc -zv p2poolv2.lab.vinteum.org 4689
 
# Resolve the public IP
$ dig +short p2poolv2.lab.vinteum.org
 
# --- Add as P2P peer ---
# In your p2poolv2 node config (e.g. config.toml), add this address
# to the [network] section under dial_peers:
$ vim config.toml
$ # [network]
$ # dial_peers = ["/ip4/189.44.63.100/tcp/4689"]
 
# --- Run your own P2P node ---
# Clone and deploy the p2poolv2 node stack:
$ git clone https://github.com/p2poolv2/p2poolv2
$ cd p2poolv2 && just compose
 
$