Help keep Qweercoin decentralised and strong — complete beginner's guide
A node is a copy of the Qweercoin software running on your computer. It connects to other nodes around the world and together they form the Qweercoin network — with no banks, no middlemen, no centralised control.
Every node independently checks that every transaction is valid. The more nodes there are, the harder it is for anyone to cheat. Running a node is a direct act of community power.
Pick your operating system above — all the instructions for your system are together in one place.
⌘ Command + Space to open Spotlight SearchEnterA dark window with a blinking cursor appears — that's Terminal.
⌘ Command + V to paste into Terminal.After downloading, paste these into Terminal one at a time:
↓ PASTE — press Enter after each linecd ~/Downloads tar xzf qweercoin-v0.1.0-macos-arm64.tar.gz sudo cp qwr-v0.1.0-macos/qweercoind qwr-v0.1.0-macos/qweercoin-cli /usr/local/bin/
sudo command asks for your Mac password. Type it and press Enter — nothing appears as you type, which is normal.Verify it worked:
qweercoind --version
qweercoind -daemon
You'll see: Qweercoin Core starting
Wait 30 seconds, then check it's running and finding other nodes:
qweercoin-cli getblockchaininfo
qweercoin-cli getpeerinfo
Make Qweercoin start automatically when your Mac turns on. First find your username:
whoami
Then paste the block below, replacing YOUR_USERNAME with the result:
cat > ~/Library/LaunchAgents/org.qweercoin.node.plist <<'PLIST'
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"><dict>
<key>Label</key><string>org.qweercoin.node</string>
<key>ProgramArguments</key><array>
<string>/usr/local/bin/qweercoind</string>
</array>
<key>RunAtLoad</key><true/>
<key>KeepAlive</key><true/>
<key>StandardOutPath</key>
<string>/Users/YOUR_USERNAME/Library/Logs/qweercoin.log</string>
<key>StandardErrorPath</key>
<string>/Users/YOUR_USERNAME/Library/Logs/qweercoin.log</string>
</dict></plist>
PLIST
launchctl load ~/Library/LaunchAgents/org.qweercoin.node.plist
Letting other nodes connect to yours makes the network stronger. macOS doesn't block outbound connections by default, so your node already works. To also accept inbound connections, open TCP port 9444 on your router.
ipconfig getifaddr en0
192.168.1.1 or 192.168.0.1 in a browserCheck the blockchain:
qweercoin-cli getblockchaininfo
See your peers:
qweercoin-cli getpeerinfo
Stop the node gracefully:
qweercoin-cli stop
Watch the live log:
tail -f ~/Library/Application\ Support/Qweercoin/debug.log
Press Control + C to stop watching the log.
.zip file → Extract AllC:\QweercoinNow add Qweercoin to your PATH so you can run it from anywhere:
↓ PASTE INTO POWERSHELL (Administrator) — press Enter[Environment]::SetEnvironmentVariable("Path", $env:Path + ";C:\Qweercoin", "Machine")
Close and reopen PowerShell as Administrator. Then verify:
qweercoind --version
Start Qweercoin in a hidden background window:
↓ PASTE — press EnterStart-Process qweercoind.exe -WindowStyle Hidden
Wait 30 seconds, then check it's running:
qweercoin-cli getblockchaininfo
qweercoin-cli getpeerinfo
Make Qweercoin start automatically when you log into Windows:
Windows key + R, type shell:startup, press Enter — a folder opensC:\Qweercoin\qweercoind.exeLetting other nodes connect to yours makes the network stronger. First, allow port 9444 through the Windows firewall:
↓ PASTE INTO POWERSHELL (Administrator)New-NetFirewallRule -DisplayName "Qweercoin" -Direction Inbound -Protocol TCP -LocalPort 9444 -Action Allow
Then forward the port on your router:
ipconfig and look for IPv4 Address (e.g. 192.168.1.45)192.168.1.1 in a browserCheck the blockchain:
qweercoin-cli getblockchaininfo
See your peers:
qweercoin-cli getpeerinfo
Stop the node gracefully:
qweercoin-cli stop
Watch the live log:
Get-Content "$env:APPDATA\Qweercoin\debug.log" -Wait -Tail 20
Press Control + C to stop watching the log.
Press Ctrl + Alt + T, or search for Terminal in your applications menu.
Ctrl + Shift + V to paste into most Linux terminals.Then paste these into Terminal one at a time:
↓ PASTE — press Enter after each linecd ~/Downloads tar xzf qweercoin-v0.1.0-linux-x64.tar.gz sudo cp qwr-v0.1.0-linux/qweercoind qwr-v0.1.0-linux/qweercoin-cli /usr/local/bin/
sudo command will ask for your password. Type it and press Enter.Verify it worked:
qweercoind --version
qweercoind -daemon
You'll see: Qweercoin Core starting
Wait 30 seconds, then check it's running:
qweercoin-cli getblockchaininfo
qweercoin-cli getpeerinfo
Create a systemd service to start Qweercoin automatically with your Linux session:
↓ PASTE THE WHOLE BLOCK INTO TERMINALmkdir -p ~/.config/systemd/user cat > ~/.config/systemd/user/qweercoin.service <<'SERVICE' [Unit] Description=Qweercoin Node After=network.target [Service] ExecStart=/usr/local/bin/qweercoind Restart=always RestartSec=5 [Install] WantedBy=default.target SERVICE systemctl --user enable qweercoin systemctl --user start qweercoin
Check status: systemctl --user status qweercoin
View logs: journalctl --user -u qweercoin -f
Allow other nodes to connect to yours for a stronger network.
If you're using UFW (Ubuntu, Debian):
sudo ufw allow 9444/tcp sudo ufw reload
If you're using firewalld (Fedora, CentOS, Red Hat):
sudo firewall-cmd --permanent --add-port=9444/tcp sudo firewall-cmd --reload
Find your local IP for router port forwarding:
hostname -I
Then log in to your router (usually at 192.168.1.1) and add a Port Forwarding rule: Protocol TCP, Port 9444, to your local IP.
Check the blockchain:
qweercoin-cli getblockchaininfo
See your peers:
qweercoin-cli getpeerinfo
Stop the node gracefully:
qweercoin-cli stop
Watch the live log:
tail -f ~/.qweercoin/debug.log
Press Control + C to stop watching the log.
Do I earn anything for running a node?
Running a node alone doesn't earn QWR, but it supports the network. To earn coins too, check the Mining guide.
My node shows 0 connections for a while
Normal when the network is small and growing. Give it a few minutes. You can restart: stop with qweercoin-cli stop, wait a few seconds, then start again.
Terminal says "command not found"
Go back to Step 2 and re-run the install. On Mac/Linux make sure the sudo cp step completed. On Windows, make sure Qweercoin is added to PATH and you reopened PowerShell.
How much internet will it use?
Very little — a few MB per day when idle. Well within home broadband limits.
Can I run this on a Raspberry Pi or an old laptop?
Yes! Follow the Linux guide. A Raspberry Pi 3 or newer works great — just keep the device on.
How do I know if my node is healthy?
Run qweercoin-cli getblockchaininfo — if "blocks" is a positive and growing number, your node is syncing and healthy.