-
Notifications
You must be signed in to change notification settings - Fork 1
fleet management
How to operate the fleet from the RemotePower dashboard — updating agents, signing releases, watching the command queue, installing/uninstalling software, and the other server-driven actions. (For the agent's local CLI, see agent-commands.)
Agents poll the server and compare their own binary's SHA-256 against the
server's canonical hash; a mismatch in either direction triggers a download and
restart. You don't push updates — you publish a new agent binary on the server
(deploy-server.sh) and agents converge within ~1 hour.
-
Force an update now, on the host:
sudo remotepower-agent update. -
Force from the server: the upgrade/exec flow can queue an
updatecommand to a device; it runs on the device's next heartbeat. -
Verify integrity:
sudo remotepower-agent integritycompares the running binary's hash to the server's. The dashboard also shows an integrity badge per device (verified / mismatch).
On the host: systemctl restart remotepower-agent. Logs:
journalctl -u remotepower-agent -f. A restart re-reads config and re-detects
watched units; it does not re-enrol (history/tags/group are preserved).
RemotePower can cryptographically sign the published agent so agents refuse any self-update that isn't validly signed by your key — defending against a tampered/compromised file server.
- Server-side signing (convenient): Admin → Release Signing → Generate signing key, then Sign current agent. The server holds the private key and signs on demand. This protects against tampering at rest, not a full server compromise (the page says so).
-
Enforcement: toggle it on so agents that have the public key pinned
(
/etc/remotepower/release.pub) reject unsigned/invalid updates. Disabling enforcement and signing both re-verify the admin password. -
"signed but INVALID": means the published binary changed after it was
signed (every deploy republishes it). Click Sign current agent to re-sign;
deploy-server.shalso re-signs automatically when a server key exists, so it stays valid across deploys. For the strongest guarantee, sign off-server in CI withtools/sign-agent-release.shand only publish the public key here.
Admin → Command Queue shows every device with commands still waiting to be
delivered on its next heartbeat — the type (exec / reboot / poll / compose /
acme / …) and a readable summary. Handy when a host is offline and you want to
see, or cancel, what's pending. You can cancel an individual queued command or
clear a device's whole queue. Anything already delivered to the agent has left
the queue. GET /api/command-queue,
DELETE /api/devices/<id>/command-queue[?index=N] (admin-only, audited).
From the Patches page (or the Rollouts page's one-time install): install or remove repo packages on a device, or across a whole group or tag, through the host's own package manager (apt / dnf / yum / zypper / pacman / apk). Targets are chosen from dropdowns of the fleet's real groups/tags/devices. Each run is tracked as a batch job with per-host status on the Rollouts page.
-
Install:
POST /api/install. Uninstall:POST /api/uninstall(removes the named packages only — no dependency auto-removal or config purge). - Gated on the
execpermission, and honours device quarantine and maintenance change-windows like any queued command.
Per-device actions from the device drawer / Devices page. Reboot and shutdown are
power actions gated on the reboot permission and (for require_confirmation
devices) queued for human approval. Wake-on-LAN sends a magic packet to the
device's recorded MAC.
A per-device switch that disables exec / reboot / all actions, enforced server-side at the command-dispatch chokepoint and audited — isolate a suspect host in one click. Quarantined devices drop queued commands rather than running them when quarantine lifts.
On the Reports → Uptime (SLA) card you can set a target uptime % per device,
tag, group, or a fleet default (most specific wins); each row shows whether it's
met or breached. GET/PUT /api/fleet/sla-targets.
Queue an oscap scan by device / group / tag with a chosen profile. The content
must match the host's OS: Ubuntu uses Canonical's usg (install it; the agent
drives it automatically for CIS/STIG profiles), Debian uses ssg-debian + the
ANSSI BP-028 profiles, RHEL/Fedora use scap-security-guide. A scan that finds
no applicable rules reports why and what to install.
Items in Needs Attention that have a mitigation playbook show an Investigate button: it queues a read-only diagnostic on the device, then runs an AI analysis that proposes a fix command (which you confirm before it runs). Roughly 21 kinds are covered: disk, memory, swap, cpu, pending patches, config drift, service down, reboot required, brute-force attempts, CVE findings, and stopped/restarting containers — plus malware / antivirus posture, stale agent version, end-of-life OS, hardware health, stale/missing backup, a new SSH key, a new listening port, agent integrity, log-pattern alerts, and failed systemd units.
RemotePower · README · CHANGELOG · remotepower.tvipper.com — generated from docs/, do not edit pages here directly.
Getting started
- Install
- Admin guide
- Deployment map
- Docker / Compose
- HTTPS / TLS
- Self-signed TLS
- Upgrading
- Troubleshooting
Agents & devices
Monitoring & health
Security
Integrations & automation
- Homelab integrations
- OPNsense
- Scripts
- Custom scripts
- MCP server
- Webhooks
- Terraform / IaC
- AI assistant
- RAG
Reference
- Architecture
- CMDB
- Feature inventory
- REST API
- Swagger / OpenAPI
- Fleet management
- Scaling
- Satellites
- Keyboard shortcuts
Release notes