]> git.proxmox.com Git - pve-docs.git/blame_incremental - vzdump.adoc
ha-manager: fix copy-paste error
[pve-docs.git] / vzdump.adoc
... / ...
CommitLineData
1ifdef::manvolnum[]
2PVE({manvolnum})
3================
4include::attributes.txt[]
5
6NAME
7----
8
9vzdump - Backup Utility for VMs and Containers
10
11
12SYNOPSYS
13--------
14
15include::vzdump.1-synopsis.adoc[]
16
17
18DESCRIPTION
19-----------
20endif::manvolnum[]
21
22ifndef::manvolnum[]
23Backup and Restore
24==================
25include::attributes.txt[]
26endif::manvolnum[]
27
28Backups are a requirements for any sensible IT deployment, and {pve}
29provides a fully integrated solution, using the capabilities of each
30storage and each guest system type. This allows the system
31administrator to fine tune via the `mode` option between consistency
32of the backups and downtime of the guest system.
33
34{pve} backups are always full backups - containing the VM/CT
35configuration and all data. Backups can be started via the GUI or via
36the `vzdump` command line tool.
37
38.Backup Storage
39
40Before a backup can run, a backup storage must be defined. Refer to
41the Storage documentation on how to add a storage. A backup storage
42must be a file level storage, as backups are stored as regular files.
43In most situations, using a NFS server is a good way to store backups.
44You can save those backups later to a tape drive, for off-site
45archiving.
46
47.Scheduled Backup
48
49Backup jobs can be scheduled so that they are executed automatically
50on specific days and times, for selectable nodes and guest systems.
51Configuration of scheduled backups is done at the Datacenter level in
52the GUI, which will generate a cron entry in /etc/cron.d/vzdump.
53
54Backup modes
55------------
56
57There are several ways to provide consistency (option `mode`),
58depending on the guest type.
59
60.Backup modes for VMs:
61
62`stop` mode::
63
64This mode provides the highest consistency of the backup, at the cost
65of a downtime in the VM operation. It works by executing an orderly
66shutdown of the VM, and then runs a background Qemu process to backup
67the VM data. After the backup is complete, the Qemu process resumes
68the VM to full operation mode if it was previously running.
69
70`suspend` mode::
71
72This mode is provided for compatibility reason, and suspends the VM
73before calling the `snapshot` mode. Since suspending the VM results in
74a longer downtime and does not necessarily improve the data
75consistency, the use of the `snapshot` mode is recommended instead.
76
77`snapshot` mode::
78
79This mode provides the lowest operation downtime, at the cost of a
80small inconstancy risk. It works by performing a Proxmox VE live
81backup, in which data blocks are copied while the VM is running. If the
82guest agent is enabled (`agent: 1`) and running, it calls
83`guest-fsfreeze-freeze` and `guest-fsfreeze-thaw` to improve
84consistency.
85
86A technical overview of the Proxmox VE live backup for QemuServer can
87be found online
88https://git.proxmox.com/?p=pve-qemu-kvm.git;a=blob;f=backup.txt[here].
89
90NOTE: Proxmox VE live backup provides snapshot-like semantics on any
91storage type. It does not require that the underlying storage supports
92snapshots.
93
94.Backup modes for Containers:
95
96`stop` mode::
97
98Stop the container for the duration of the backup. This potentially
99results in a very long downtime.
100
101`suspend` mode::
102
103This mode uses rsync to copy the container data to a temporary
104location (see option `--tmpdir`). Then the container is suspended and
105a second rsync copies changed files. After that, the container is
106started (resumed) again. This results in minimal downtime, but needs
107additional space to hold the container copy.
108+
109When the container is on a local file system and the target storage of
110the backup is an NFS server, you should set `--tmpdir` to reside on a
111local file system too, as this will result in a many fold performance
112improvement. Use of a local `tmpdir` is also required if you want to
113backup a local container using ACLs in suspend mode if the backup
114storage is an NFS server.
115
116`snapshot` mode::
117
118This mode uses the snapshotting facilities of the underlying
119storage. First, the container will be suspended to ensure data consistency.
120A temporary snapshot of the container's volumes will be made and the
121snapshot content will be archived in a tar file. Finally, the temporary
122snapshot is deleted again.
123
124NOTE: `snapshot` mode requires that all backed up volumes are on a storage that
125supports snapshots. Using the `backup=no` mount point option individual volumes
126can be excluded from the backup (and thus this requirement).
127
128NOTE: bind and device mount points are skipped during backup operations, like
129volume mount points with the backup option disabled.
130
131
132Backup File Names
133-----------------
134
135Newer versions of vzdump encode the guest type and the
136backup time into the filename, for example
137
138 vzdump-lxc-105-2009_10_09-11_04_43.tar
139
140That way it is possible to store several backup in the same
141directory. The parameter `maxfiles` can be used to specify the
142maximum number of backups to keep.
143
144Restore
145-------
146
147The resulting archive files can be restored with the following programs.
148
149
150`pct restore`:: Container restore utility
151
152`qmrestore`:: QemuServer restore utility
153
154For details see the corresponding manual pages.
155
156Configuration
157-------------
158
159Global configuration is stored in `/etc/vzdump.conf`. The file uses a
160simple colon separated key/value format. Each line has the following
161format:
162
163 OPTION: value
164
165Blank lines in the file are ignored, and lines starting with a `#`
166character are treated as comments and are also ignored. Values from
167this file are used as default, and can be overwritten on the command
168line.
169
170We currently support the following options:
171
172include::vzdump.conf.5-opts.adoc[]
173
174
175.Example `vzdump.conf` Configuration
176----
177tmpdir: /mnt/fast_local_disk
178storage: my_backup_storage
179mode: snapshot
180bwlimit: 10000
181----
182
183Hook Scripts
184------------
185
186You can specify a hook script with option `--script`. This script is
187called at various phases of the backup process, with parameters
188accordingly set. You can find an example in the documentation
189directory (`vzdump-hook-script.pl`).
190
191File Exclusions
192---------------
193
194NOTE: this option is only available for container backups.
195
196`vzdump` skips the following files by default (disable with the option
197`--stdexcludes 0`)
198
199 /tmp/?*
200 /var/tmp/?*
201 /var/run/?*pid
202
203You can also manually specify (additional) exclude paths, for example:
204
205 # vzdump 777 --exclude-path /tmp/ --exclude-path '/var/foo*'
206
207(only excludes tmp directories)
208
209Configuration files are also stored inside the backup archive
210(in `./etc/vzdump/`) and will be correctly restored.
211
212Examples
213--------
214
215Simply dump guest 777 - no snapshot, just archive the guest private area and
216configuration files to the default dump directory (usually
217`/var/lib/vz/dump/`).
218
219 # vzdump 777
220
221Use rsync and suspend/resume to create a snapshot (minimal downtime).
222
223 # vzdump 777 --mode suspend
224
225Backup all guest systems and send notification mails to root and admin.
226
227 # vzdump --all --mode suspend --mailto root --mailto admin
228
229Use snapshot mode (no downtime) and non-default dump directory.
230
231 # vzdump 777 --dumpdir /mnt/backup --mode snapshot
232
233Backup more than one guest (selectively)
234
235 # vzdump 101 102 103 --mailto root
236
237Backup all guests excluding 101 and 102
238
239 # vzdump --mode suspend --exclude 101,102
240
241Restore a container to a new CT 600
242
243 # pct restore 600 /mnt/backup/vzdump-lxc-777.tar
244
245Restore a QemuServer VM to VM 601
246
247 # qmrestore /mnt/backup/vzdump-qemu-888.vma 601
248
249Clone an existing container 101 to a new container 300 with a 4GB root
250file system, using pipes
251
252 # vzdump 101 --stdout | pct restore --rootfs 4 300 -
253
254
255ifdef::manvolnum[]
256include::pve-copyright.adoc[]
257endif::manvolnum[]
258