Management

Managing Proxmox from Your Phone: Complete Guide

A comprehensive guide to managing your Proxmox VE infrastructure from your phone using ProxmoxR. Covers multi-cluster management, monitoring, power control, console access, and security.

ProxmoxR app icon

Managing Proxmox? Try ProxmoxR

Monitor and control your VMs & containers from your phone.

Try Free

Why Mobile Proxmox Management Matters

If you run Proxmox VE in any capacity — homelab, small business, or enterprise — there will be times when you need to check on your infrastructure and you are nowhere near a computer. A VM crashes during dinner. A backup fails while you are on vacation. A client reports their service is down while you are commuting. These situations are inevitable, and how quickly you can respond often determines whether a minor hiccup becomes a major outage.

Traditional Proxmox management requires a web browser, which means opening a laptop, connecting to a VPN, and navigating to the web UI. On a phone, the Proxmox web interface is technically accessible but practically unusable — tiny buttons, unresponsive layouts, and no touch optimization. This is where a dedicated mobile management app becomes essential.

ProxmoxR is a native mobile app purpose-built for managing Proxmox VE from your phone. It connects directly to the Proxmox API and provides a touch-optimized interface for every management task you would normally perform in the web UI. This guide walks you through everything you need to know to manage your Proxmox infrastructure from your pocket.

Common Use Cases for Mobile Management

On-Call and Emergency Response

When you receive an alert that a production VM is unresponsive, every minute counts. With ProxmoxR on your phone, you can immediately check the VM's status, view its resource consumption, and take corrective action — restart it, access the console, or migrate it to another node — all within seconds of receiving the alert.

Quick Status Checks

Sometimes you just want to confirm everything is running. Maybe you applied updates earlier and want to verify all VMs came back online. Or you kicked off a backup before leaving the office and want to check its progress. ProxmoxR lets you do these quick checks in seconds without interrupting whatever else you are doing.

Remote Infrastructure Management

If you manage Proxmox infrastructure at multiple locations — a client's office, a colocation facility, your home — having mobile management means you can handle tasks at any site from wherever you happen to be. Start a VM at the colo, check storage at the client site, and monitor your homelab, all from one app.

ProxmoxR Features Walkthrough

Multi-Cluster Management

One of ProxmoxR's standout features is the ability to manage multiple Proxmox clusters from a single app. You can add as many clusters as you need, each with its own connection settings and credentials. The app's main screen shows all your clusters at a glance, so you can quickly switch between your production environment, staging cluster, and homelab without logging in and out.

Each cluster displays a summary of its health: how many nodes are online, the total number of running and stopped VMs and containers, and overall resource utilization. This gives you an instant bird's-eye view of your entire infrastructure.

Real-Time Monitoring

ProxmoxR provides native performance graphs for every node, VM, and container. You can view live and historical data for:

  • CPU usage — See how hard your processors are working and identify overloaded guests.
  • Memory consumption — Track RAM usage and spot memory leaks before they cause OOM kills.
  • Network throughput — Monitor inbound and outbound traffic on each network interface.
  • Disk I/O — Identify storage bottlenecks and high-latency operations.

These graphs are rendered natively on your device, so they are smooth and responsive, unlike trying to load web-based charts over a mobile connection.

Power Control

Full power management is available for every VM and container. From ProxmoxR, you can:

  • Start, stop, and restart VMs and containers
  • Perform graceful shutdowns via ACPI
  • Force-stop unresponsive guests
  • Pause and resume VMs

Power actions include confirmation prompts to prevent accidental operations, so you will not accidentally shut down a production server while scrolling through your phone.

Console Access

ProxmoxR includes console access capabilities, letting you interact with your VMs and containers directly from your phone. This is invaluable when you need to troubleshoot a guest that has lost network connectivity — the console is your only way in when SSH is not available.

Firewall Management

View and manage Proxmox firewall rules from your phone. If you need to quickly block an IP address, open a port, or review existing rules during an incident, ProxmoxR gives you access to the firewall configuration without needing a desktop browser.

Backup Management

Monitor backup jobs, check their status, and view backup history. You can verify that scheduled backups completed successfully, see the size and duration of each backup, and manage backup storage. If a backup failed, you can investigate immediately rather than discovering the failure days later.

Setting Up ProxmoxR

Step 1: Create a Dedicated API Token

While you can connect ProxmoxR using your root credentials, best practice is to create a dedicated API token with appropriate permissions. This is more secure and lets you revoke access without changing your admin password.

# Create a dedicated user for mobile management
pveum useradd proxmoxr@pve -comment "ProxmoxR Mobile App"
pveum passwd proxmoxr@pve

# Assign the PVEAdmin role for full management capabilities
pveum aclmod / -user proxmoxr@pve -role PVEAdmin

# Or create an API token for token-based authentication
pveum user token add proxmoxr@pve mobile-app -privsep 0
# Save the displayed token value — it is only shown once

If you want to restrict the mobile user to read-only access (monitoring only), use the PVEAuditor role instead:

# Read-only access for monitoring
pveum aclmod / -user proxmoxr@pve -role PVEAuditor

Step 2: Configure Network Access

ProxmoxR connects to your Proxmox API (default port 8006). You need to ensure your phone can reach this endpoint. Options include:

  • Local network — Works when you are on the same WiFi as your Proxmox server. Simplest option for homelabs.
  • VPN — Set up WireGuard or OpenVPN on your network to access Proxmox remotely. This is the most secure approach.
  • Port forwarding — Forward port 8006 on your router to your Proxmox host. Use with caution and always enable two-factor authentication.
  • Reverse proxy — Place Nginx or Traefik in front of Proxmox with a proper SSL certificate.

Step 3: Add Your Cluster to ProxmoxR

Open ProxmoxR and add a new cluster connection. Enter your Proxmox host address (IP or hostname), port (default 8006), and your credentials or API token. The app will verify the connection and display your cluster's nodes and guests.

If your Proxmox server uses a self-signed SSL certificate (which is the default), ProxmoxR handles this gracefully — you can review and accept the certificate on first connection.

Security Best Practices for Mobile Management

Giving mobile access to your infrastructure is powerful but requires careful security considerations:

  1. Use API tokens instead of passwords — Tokens can be revoked individually without affecting other access. If your phone is lost, revoke the token immediately.
  2. Apply the principle of least privilege — Give the mobile user only the permissions it needs. If you only need monitoring, use PVEAuditor, not PVEAdmin.
  3. Enable two-factor authentication — Add TOTP to your Proxmox user accounts for an extra layer of security:
    # Enable TOTP for a user
    pveum user modify proxmoxr@pve -tfa type=totp
  4. Use VPN for remote access — Never expose the Proxmox web interface directly to the internet without additional protection. A VPN adds encryption and authentication before anyone can reach the API.
  5. Audit access logs — Regularly review /var/log/pveproxy/access.log to see who is connecting to your API and from where.
  6. Keep separate accounts — Use a dedicated user for mobile access so you can track and control it independently from your desktop admin account.

Real-World Workflow: Responding to an Incident

Here is a practical example of how mobile management with ProxmoxR saves time during an incident:

  1. You receive a monitoring alert on your phone: "Web server VM high CPU usage."
  2. Open ProxmoxR and navigate to the affected VM. Check the CPU and memory graphs — CPU is at 100%, memory is normal.
  3. Open the console to check what process is consuming CPU. You see a runaway process.
  4. If the VM is unresponsive, perform a graceful restart from ProxmoxR.
  5. Watch the VM come back online and verify resource usage returns to normal.
  6. Total time: under two minutes, without opening a laptop.

Pro tip: Keep ProxmoxR configured with all your clusters so you are always ready to respond. The few minutes you spend setting it up today could save you hours during a future emergency.

Conclusion

Mobile management is no longer a nice-to-have — it is an essential part of running any infrastructure responsibly. Whether you are a homelab enthusiast who wants to check on VMs from the couch or an IT professional who needs to respond to incidents on the go, ProxmoxR transforms your phone into a complete Proxmox management console. Combined with proper API token configuration and security practices, it gives you the confidence that your infrastructure is always within reach.

Take Proxmox management mobile

All the features discussed in this guide — accessible from your phone with ProxmoxR. Real-time monitoring, power control, firewall management, and more.

ProxmoxR

Manage Proxmox from your phone

Monitor, control, and manage your clusters on the go.

Free 7-day trial · No credit card required