Unduh
Binary siap pakai buat client & server HashRelay, plus bundle Web UI admin — Linux & Windows.
Pemberitahuan Hukum
HashRelay adalah tool infrastruktur jaringan general-purpose. Kamu bertanggung jawab penuh memastikan aktivitas mining cryptocurrency sesuai hukum di negaramu. Di beberapa wilayah, mining dibatasi atau dilarang — cek regulasi lokal sebelum download atau deploy.
Client 0.2.2
Rilis 2026-07-06- •- Add version and platform to client nodes
Instal satu baris
Install pakai environment variable (rekomendasi)
Buat client node di server dulu (Web UI → Client Nodes). Ganti YOUR_* lalu jalankan. Di OpenWrt (sudah root) hilangkan sudo, pakai env … sh.
# Create a client node on the server first (Web UI → Client Nodes).
# Replace YOUR_* values below with your own before running.
curl -fsSL https://hashrelay.net/releases/scripts/install-client.sh | \
sudo env \
SERVER_ADDR=YOUR_SERVER_IP \
TCP_PORT=8555 \
QUIC_PORT=9555 \
CLIENT_ID=YOUR_CLIENT_ID \
TOKEN=YOUR_ACCESS_TOKEN \
sh
# OpenWrt / already root: omit sudo — pipe to "env ... sh" insteadAtau install interaktif
Tanpa env var — installer akan tanya alamat server, port, client ID, dan token.
# Interactive install — the script prompts for each value.
curl -fsSL https://hashrelay.net/releases/scripts/install-client.sh | sudo shAtau install dulu, config belakangan
Jalankan install satu baris, edit config, lalu restart service.
# Install first, edit config, then restart:
curl -fsSL https://hashrelay.net/releases/scripts/install-client.sh | sudo sh
# OpenWrt / already root: omit sudo on the line above
# Edit /etc/hash-relay/client.toml — set server_addr, tcp_port, quic_port, client_id, token
sudo nano /etc/hash-relay/client.toml
# Restart — Linux (systemd):
sudo systemctl restart hash-relay-client
# Restart — OpenWrt (procd):
/etc/init.d/hash-relay-client restartFile config ditulis ke /etc/hash-relay/client.toml.
Butuh root (sudo). Support systemd dan OpenWrt/procd.
Linux
Windows
Template Config & Quick Run
Download template config, simpan sebagai client.toml, edit valuenya, lalu jalankan binary dengan file tersebut.
Lalu jalankan binary dengan file config:
# Linux / macOS
./hr-client --config client.toml
# Windows (PowerShell)
.\hr-client.exe --config client.tomlUninstall
Jalankan uninstaller buat stop service, hapus binary, dan opsional hapus config & data.
curl -fsSL https://hashrelay.net/releases/scripts/uninstall-client.sh | sudo shButuh root (sudo). Konfirmasi sebelum hapus config/data; pakai --yes buat non-interaktif.