siem-agent-NDK36-DavidMunyiri-win-fc4718fb475c
1.0.0
linux
2803 seconds
log-collection, system-monitoring, vulnerability-scanning
Choose your installation method based on your environment:
Download standalone installer packages for individual computers:
📥 Windows Package (.zip) 📥 macOS Package (.zip) 📥 Linux Package (.zip)One-command installation for Linux servers with auto-start:
curl -fsSL https://siem-agent.devnhr.com/install/server | sudo bash
curl -fsSL https://siem-agent.devnhr.com/install/server | sudo bash -s -- --name "WebServer-01"
💡 Replace "WebServer-01" with your preferred server name (e.g., "Production-DB", "API-Gateway", "Staging-App-01")
Supported: Ubuntu, CentOS, RHEL, Debian, Amazon Linux
# Windows (PowerShell - Run as Administrator)
iex ((New-Object System.Net.WebClient).DownloadString('https://siem-agent.devnhr.com/install/windows'))
# macOS (Terminal - Run with sudo)
curl -s https://siem-agent.devnhr.com/install/macos | sudo bash
# Default installation (uses hostname)
curl -fsSL https://siem-agent.devnhr.com/install/server | sudo bash
# With custom agent name (recommended)
curl -fsSL https://siem-agent.devnhr.com/install/server | sudo bash -s -- --name "WebServer-01"
curl -fsSL https://siem-agent.devnhr.com/install/server | sudo bash -s -- --name "Production-DB"
curl -fsSL https://siem-agent.devnhr.com/install/server | sudo bash -s -- --name "API-Gateway"
# Verify installation
sudo systemctl status siem-agent
sudo journalctl -u siem-agent -n 50 | grep -E "(agent ID|Agent name)"
# Linux
curl -fsSL https://siem-agent.devnhr.com/update/linux | sudo bash
# Windows (PowerShell - Run as Administrator)
iex ((New-Object System.Net.WebClient).DownloadString('https://siem-agent.devnhr.com/update/windows'))
# macOS
curl -fsSL https://siem-agent.devnhr.com/update/macos | sudo bash
💡 Update commands preserve agent ID, configuration, and data - no need to uninstall!
# Check status
sudo systemctl status siem-agent
# View logs
sudo journalctl -u siem-agent -f
# Restart service
sudo systemctl restart siem-agent
# Stop service
sudo systemctl stop siem-agent
# Disable auto-start
sudo systemctl disable siem-agent