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