Weave Node Manager (wnm) is a Python application designed to manage Autonomi nodes on Linux and macOS systems.
Platforms:
- Linux: systemd or antctl for process management, UFW for firewall
- macOS: launchd for process management (native support) or antctl
- Python 3.12.3+ required
- Automatic node lifecycle management (create, start, stop, upgrade, remove)
- Resource-based decision engine (CPU, memory, disk, I/O, load average thresholds)
- Platform-specific process management (systemd on Linux, launchd on macOS)
- Per-node binary copies for independent upgrades
- SQLite database for configuration and state tracking
- Support for configuration via environment variables, config files, or command-line parameters
This code is Alpha. On Linux, it can migrate from an existing anm installation. On macOS, it provides native development and testing support using launchd.
macOS support uses launchd for process management and is ideal for development and testing.
curl -sSL https://raw.githubusercontent.com/maidsafe/antup/main/install.sh | bash~/.local/bin/antup nodepyenv shell 3.14.0pip3 install wnmgit clone https://github.com/iweave/weave-node-manager.git
cd weave-node-manager
pip3 install -e .# Initialize with your rewards address
wnm --init --rewards_address 0xYourEthereumAddress
# Run in dry-run mode to test
wnm --dry_run
# Or run normally to start managing nodes
wnm# Add to crontab (runs every minute)
crontab -e
# Add these lines:
PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
*/1 * * * * ~/.pyenv/versions/3.14.0/bin/wnm >> ~/Library/Logs/autonomi/wnm-cron.log 2>&1macOS Notes:
- Uses
~/Library/Application Support/autonomi/node/for data - Uses
~/Library/Logs/autonomi/for logs - Nodes managed via launchd (
~/Library/LaunchAgents/) - No root/sudo access required
Non-root installation using systemd for process management.
curl -sSL https://raw.githubusercontent.com/maidsafe/antup/main/install.sh | bash~/.local/bin/antup nodepython3 -m venv .venv
. ~/.venv/bin/activate~/.venv/bin/pip3 install wnmgit clone https://github.com/iweave/weave-node-manager.git
cd weave-node-manager
~/.venv/bin/pip3 install -e .# Initialize with your rewards address
wnm --init --rewards_address 0xYourEthereumAddress
# Run in dry-run mode to test
wnm --dry_run
# Or run normally
wnmcrontab -e
# Add this line:
export PATH=/usr/local/bin:/usr/sbin:/usr/bin:/bin
*/1 * * * * ~/.venv/bin/wnm >> ~/.local/share/autonomi/logs/wnm-cron.log 2>&1Linux User-Level Notes:
- Uses
~/.local/share/autonomi/node/for data - Uses
~/.local/share/autonomi/logs/for logs - Nodes run as background processes (setsid)
- No root/sudo required
Configuration follows a multi-layer priority system (highest to lowest):
- Command-line arguments:
wnm --cpu_less_than 70 --node_cap 50 - Environment variables: Set in
.envfile or shell environment - Config files:
~/.local/share/wnm/config,~/wnm/config, or-c/--config - Database-stored config: Persisted in
colony.dbafter initialization - Default values: Built-in defaults
Resource thresholds control when nodes are added or removed:
--cpu_less_than/--cpu_remove: CPU percentage thresholds (default: 70% / 80%)--mem_less_than/--mem_remove: Memory percentage thresholds (default: 70% / 80%)--hd_less_than/--hd_remove: Disk usage percentage thresholds (default: 70% / 80%)--desired_load_average/--max_load_average_allowed: Load average thresholds--node_cap: Maximum number of nodes (default: 50)--rewards_address: Wallet address(es) for node rewards (required) - see Wallet Configuration below--node_storage: Root directory for node data (auto-detected per platform)
The --rewards_address parameter supports multiple formats for flexible reward distribution:
Use a single Ethereum address or named wallet:
# Ethereum address
wnm --init --rewards_address 0xYourEthereumAddress
# Named wallet: "donate" (uses your custom donate_address or the community foucet if not deefined)
wnm --init --rewards_address donate
# Named wallet: "faucet" (always uses the autonomi community faucet address)
wnm --init --rewards_address faucetDistribute rewards across multiple wallets using weighted random selection:
# Format: wallet1:weight1,wallet2:weight2,...
wnm --init --rewards_address "0xYourAddress:100,faucet:1,donate:10"In this example:
- Your address receives ~90% of nodes (100 out of 111 weight)
- Faucet receives ~1% of nodes (1 out of 111 weight)
- Donate address receives ~9% of nodes (10 out of 111 weight)
Key Features:
- Random per node: Each new node randomly selects a wallet based on weights
- Named wallets: Use
faucet(project faucet) ordonate(your custom donation address) - Case-insensitive:
faucet,FAUCET, andFaucetall work - Mix addresses and names: Combine Ethereum addresses with named wallets
- Changeable: Update
--rewards_addressanytime to change distribution for new nodes
Examples:
# 50/50 split between your address and faucet
wnm --rewards_address "0xYourAddress:1,faucet:1"
# Your address only
wnm --rewards_address 0xYourAddress
# Mostly yours, small donation to faucet
wnm --rewards_address "0xYourAddress:99,faucet:1"
# Multiple addresses with custom weights
wnm --rewards_address "0xAddress1:100,0xAddress2:50,faucet:10"Upon finding an existing anm installation, wnm will:
- Disable anm by removing
/etc/cron.d/anm - Import configuration from
/var/antctl/config - Discover and import existing nodes from systemd
- Take over management of the cluster
Use wnm --init --migrate_anm to trigger migration.
# macOS or Linux
wnm
# With dry-run (no actual changes)
wnm --dry_run
# Initialize first time
wnm --init --rewards_address 0xYourEthereumAddressWNM is designed to run every minute via cron. By default it performs one operation per cycle, but can be configured for concurrent operations on powerful machines:
macOS:
crontab -e
# Add: */1 * * * * /Users/dawn/.pyenv/versions/3.14.0/bin/wnm>> ~/Library/Logs/autonomi/wnm-cron.log 2>&1Linux (user):
crontab -e
# Add: */1 * * * * ~/.venv/bin/wnm >> ~/.local/share/autonomi/logs/wnm-cron.log 2>&1Linux (root):
sudo crontab -e
# Add: */1 * * * * /opt/wnm/.venv/bin/wnm >> /var/log/wnm-cron.log 2>&1For development with live code reloading:
macOS (native):
python3 -m wnm --dry_runLinux (Docker):
./scripts/dev.sh
# Inside container:
python3 -m wnm --dry_runSee DOCKER-DEV.md for comprehensive Docker development workflow.
See PLATFORM-SUPPORT.md for detailed information about:
- Platform-specific process managers (systemd, launchd, setsid)
- Firewall management (UFW, null)
- Path conventions per platform
- Binary management and upgrades
- Testing strategies
Contributions are welcome! Please submit a pull request or open an issue for any enhancements or bug fixes.
This project is licensed under the MIT License. See the LICENSE file for more details.