Central server

Self-hosted server

Only needed if you're self-hosting. Hosted (cloud) customers can skip this section and jump straight to Remotes.

Windows

MSI installer. Installs the RedNetMonitorServer service. Data lives under ProgramData\RedNetMonitor.

  • rednetmonitor-server-1.3.9-windows.msi x64 · 47 MB Download
    SHA-256 cb4fc4f314589d3748621acf9eed368129d976d783191941e26ec8765788d1b8

Linux

systemd service (red-net-monitor.service). Data under /var/lib/red_net_monitor.

Linux build coming soon.

System requirements

Windows Server 2019+ (a Linux server build is coming soon). 2 vCPU / 2 GB RAM minimum. Supports SQLite (default), PostgreSQL, MySQL and SQL Server.

Remote agents

Remotes - install on every machine you want to monitor

Required for both hosted and self-hosted. Lightweight: only outbound HTTPS to the central server.

Windows Remote

Installs the RedNetMonitorRemote service. Logs via Event Viewer.

  • rednetmonitor-remote-1.3.9-windows.msi x64 · 26 MB Download
    SHA-256 a60a8a0156abf8f86b029dd1d40875bcf2291fc963aaf6cef4f5f028d72305a9

Linux Remote

Installs red-net-monitor-remote.service. Logs via journalctl.

  • rednetmonitor-remote_1.3.9_amd64.deb Debian / Ubuntu · x64 · 23 MB Download
    SHA-256 40fcfaa007fd0cec4e83f10c86e1d8634e21d46e98b7102a927ea183d35b231a
  • rednetmonitor-remote_1.3.9_arm64.deb Debian / Ubuntu · arm64 · 22 MB Download
    SHA-256 c2d931cd68df1a7ff4cd9834b94955a987f3799e8c123c374255354235fa17ff
Verify your download

Check the file before you install.

Compute the SHA-256 of the file you downloaded and compare it to the value shown on its download above (or in the SHA256SUMS file). They must match exactly - case doesn't matter. If they differ, do not run the file.

Windows

In PowerShell, from the folder you downloaded into (replace FILENAME with the file you got):

# Print the file's SHA-256
Get-FileHash FILENAME -Algorithm SHA256

No PowerShell? In any Command Prompt: certutil -hashfile FILENAME SHA256

Linux / macOS

In a terminal, from the folder you downloaded into (replace FILENAME with the file you got):

# Print the file's SHA-256
sha256sum FILENAME
# Or verify against the downloaded SHA256SUMS - prints "FILENAME: OK" sha256sum --ignore-missing -c SHA256SUMS

On macOS use shasum -a 256 FILENAME (there's no sha256sum by default).