Yes, Proxmox can create a backup while an LXC container is running. That does not automatically mean the database inside the container is application-consistent at the captured point in time.
Treat a live container snapshot as crash-consistent unless the database is dumped, quiesced, or otherwise coordinated with the backup. The correct choice depends on the database engine, write rate, acceptable downtime, and whether every data path is included.
Distinguish container capture from database consistency
A container backup can capture its filesystem while database pages, journals, and indexes are changing. After restore, the engine may replay its write-ahead log successfully, but that is recovery from an abrupt stop rather than proof of a clean application checkpoint.
Bind mounts and external datasets require separate attention. A Proxmox archive can be valid while the database's real data directory, object store, or uploaded files live outside the backed-up root filesystem.
For a low-value service with a journaling database, tested crash recovery may be acceptable. For irreplaceable records, add a database-native dump, replication checkpoint, or short maintenance window.
Choose the protection level from observable signals
Check whether the database reports clean checkpoints, whether dumps complete without errors, and whether the Proxmox task log includes every intended volume. High write latency or a rapidly growing WAL during backup indicates more recovery work after restore.
Schedule the native dump shortly before the container backup and store it inside a path that the backup includes. For engines that support online backup APIs, use those instead of copying live data files.
Classify the result with the table below and write that classification into the job notes so a future operator knows what the archive can guarantee.
| Observed state | Verdict | Next action |
|---|---|---|
| Native dump plus LXC archive | Application-aware recovery path | Preferred for important databases |
| Snapshot only; restore tests pass | Crash-consistent | Accept only with documented risk |
| External data path omitted | Incomplete | Stop and expand backup scope |
Build a coordinated backup job
Run a pre-backup step that creates a timestamped database dump or requests a checkpoint. Verify the command exit status and available space; a zero-byte dump must fail the job rather than allow a reassuring green backup badge.
Capture the LXC after the consistency step, then run a post-backup check that records the archive ID and dump checksum. Keep database-native retention separate enough that one bad container archive does not erase the last good logical copy.
The ZimaSpace Proxmox backup guide covers VM and container recovery planning.
Independent guidance on application-consistent Proxmox backups explains why a running snapshot and an application-aware backup are different guarantees.
Prove the archive with a restore under load
Restore to an isolated CT ID and disconnected network so it cannot conflict with production. Start the database, inspect recovery logs, run integrity checks, and query a known record written near the backup window.
Repeat the test while production is under its normal write load. A backup that restores only during an idle lab test has not validated the risky condition that motivated the question.
Proceed with live LXC backups when all storage is in scope and the engine repeatedly recovers or a native dump is included. Stop and use a coordinated pause or shutdown if integrity checks fail, external mounts are missing, or the application cannot tolerate crash recovery.
Support & Tips
More to Read

Can You Replace a Noisy Mini PC Fan Without Changing Thermal Control?
Yes—if the replacement matches the electrical interface, airflow, and feedback signals; connector fit alone does not preserve thermal control.

Can a Home Server Resume Services in Dependency Order After UPS Recovery?
Yes—use explicit boot dependencies and readiness checks; restart policies alone do not guarantee services become usable in the right order.

Can You Use Wake-on-LAN After a Complete Power Loss?
Sometimes—WOL needs standby power and firmware/NIC state to recover after AC returns; it cannot wake a machine while power is absent.

