Skip to content

Proxmox VE Integration

Manage virtual machines and containers.

Overview

SlimRMM provides native Proxmox VE integration for managing virtualized infrastructure.

Requirements

  • SlimRMM agent installed on Proxmox host
  • Agent must run as root
  • API access to Proxmox (automatic detection)

Features

VM Management

  • View all VMs and containers
  • Start/Stop/Restart operations
  • Live monitoring
  • Snapshot management

Container Management

  • LXC container control
  • Resource monitoring
  • Quick console access

Setup

  1. Install agent on Proxmox host:

    bash
    sudo ./slimrmm-agent --install \
      --server https://your-server.com \
      --token YOUR_TOKEN
  2. Agent auto-detects Proxmox environment

  3. VMs/containers appear in dashboard

Operations

Start VM

http
POST /api/v1/agents/{uuid}/proxmox/{vmid}/start

Stop VM

http
POST /api/v1/agents/{uuid}/proxmox/{vmid}/stop

Restart VM

http
POST /api/v1/agents/{uuid}/proxmox/{vmid}/restart

Create Snapshot

http
POST /api/v1/agents/{uuid}/proxmox/{vmid}/snapshot
Content-Type: application/json

{
  "name": "pre-update-snapshot",
  "description": "Before system update"
}

Monitoring

Proxmox-specific metrics:

  • CPU allocation and usage
  • Memory allocation and usage
  • Disk I/O
  • Network throughput
  • VM/Container status

Released under the MIT License.