Monero Mining Pool
Download the latest XMRig miner from the official GitHub releases:
Download XMRig for WindowsExtract the ZIP file and create a start.bat file with this content:
xmrig.exe -o alphablockmonero.xyz:3333 -u YOUR_MONERO_WALLET_ADDRESS -p worker1 -k
Replace YOUR_MONERO_WALLET_ADDRESS with your actual Monero wallet address.
Double-click start.bat to begin mining. You should see your hashrate and accepted shares.
sudo apt update sudo apt install git build-essential cmake libuv1-dev libssl-dev libhwloc-dev
git clone https://github.com/xmrig/xmrig.git cd xmrig mkdir build && cd build cmake .. make -j$(nproc)
./xmrig -o alphablockmonero.xyz:3333 -u YOUR_MONERO_WALLET_ADDRESS -p worker1 -k
Create a systemd service to run XMRig automatically:
sudo nano /etc/systemd/system/xmrig.service # Add this content: [Unit] Description=XMRig Miner After=network.target [Service] ExecStart=/path/to/xmrig/build/xmrig -o alphablockmonero.xyz:3333 -u YOUR_WALLET -p worker1 Restart=always User=youruser [Install] WantedBy=multi-user.target # Enable and start: sudo systemctl enable xmrig sudo systemctl start xmrig
If you don't have Homebrew installed:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install cmake libuv openssl hwloc git clone https://github.com/xmrig/xmrig.git cd xmrig mkdir build && cd build cmake .. -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl make -j$(sysctl -n hw.logicalcpu)
./xmrig -o alphablockmonero.xyz:3333 -u YOUR_MONERO_WALLET_ADDRESS -p worker1 -k
For advanced users, create a config.json file:
{
"autosave": true,
"cpu": {
"enabled": true,
"huge-pages": true,
"hw-aes": null,
"priority": null,
"max-threads-hint": 100
},
"opencl": false,
"cuda": false,
"pools": [
{
"algo": "rx/0",
"coin": "monero",
"url": "alphablockmonero.xyz:3333",
"user": "YOUR_MONERO_WALLET_ADDRESS",
"pass": "worker1",
"keepalive": true,
"nicehash": false,
"tls": false
}
]
}
Useful command-line flags:
-k / --keepalive
Send keepalive packets (recommended)
--cpu-max-threads-hint=N
Use N% of CPU threads (e.g., 75)
--randomx-1gb-pages
Enable 1GB pages for better performance
--donate-level=1
Set donation level (default 1%)
--tls
Use TLS/SSL connection
Tutorial video coming soon!
Check back later for step-by-step mining setup