]> git.proxmox.com Git - proxmox-backup.git/blame - docs/tape-backup.rst
node config: avoid "allow" annotation
[proxmox-backup.git] / docs / tape-backup.rst
CommitLineData
225affc9
DM
1.. _tape_backup:
2
5f79dc28
DM
3Tape Backup
4===========
5
53939bb4
DW
6.. image:: images/screenshots/pbs-gui-tape-changer-overview.png
7 :align: right
8 :alt: Tape Backup: Tape changer overview
9
66d06696
DC
10Proxmox tape backup provides an easy way to store datastore content
11onto magnetic tapes. This increases data safety because you get:
5f79dc28 12
70d00e01
DW
13- an additional copy of the data,
14- on a different media type (tape),
02633961 15- to an additional location (you can move tapes off-site)
5f79dc28 16
66d06696 17In most restore jobs, only data from the last backup job is restored.
70d00e01 18Restore requests further decline, the older the data
0bce2118 19gets. Considering this, tape backup may also help to reduce disk
70d00e01
DW
20usage, because you can safely remove data from disk, once it's archived on
21tape. This is especially true if you need to retain data for several
0bce2118 22years.
54d96866
DM
23
24Tape backups do not provide random access to the stored data. Instead,
70d00e01 25you need to restore the data to disk, before you can access it
02633961 26again. Also, if you store your tapes off-site (using some kind of tape
70d00e01
DW
27vaulting service), you need to bring them back on-site, before you can do any
28restores. So please consider that restoring from tape can take much
29longer than restoring from disk.
5f79dc28
DM
30
31
32Tape Technology Primer
33----------------------
34
70d00e01 35.. _Linear Tape-Open: https://en.wikipedia.org/wiki/Linear_Tape-Open
5f79dc28 36
70d00e01
DW
37As of 2021, the only widely available tape technology standard is
38`Linear Tape-Open`_ (LTO). Different vendors offer LTO Ultrium tape
39drives, auto-loaders, and LTO tape cartridges.
54d96866 40
70d00e01
DW
41There are a few vendors that offer proprietary drives with
42slight advantages in performance and capacity. Nevertheless, they have
66d06696 43significant disadvantages:
54d96866
DM
44
45- proprietary (single vendor)
46- a much higher purchase cost
47
66d06696 48So we currently do not test such drives.
5f79dc28
DM
49
50In general, LTO tapes offer the following advantages:
51
70d00e01 52- Durability (30 year lifespan)
5f79dc28
DM
53- High Capacity (12 TB)
54- Relatively low cost per TB
55- Cold Media
56- Movable (storable inside vault)
57- Multiple vendors (for both media and drives)
53939bb4 58- Built in AES-GCM Encryption engine
d5efa18a 59
02633961
TL
60Note that `Proxmox Backup Server` already stores compressed data, so using the
61tape compression feature has no advantage.
54d96866 62
d5efa18a
DM
63
64Supported Hardware
65------------------
66
ae5b1e18
DC
67Proxmox Backup Server supports `Linear Tape-Open`_ generation 5 (LTO-5)
68or later and has best-effort support for generation 4 (LTO-4). While
69many LTO-4 systems are known to work, some might need firmware updates or
70do not implement necessary features to work with Proxmox Backup Server.
d5efa18a 71
ee9fa953
DM
72Tape changing is carried out using the SCSI Medium Changer protocol,
73so all modern tape libraries should work.
74
75.. Note:: We use a custom user space tape driver written in Rust_. This
76 driver directly communicates with the tape drive using the SCSI
53939bb4
DW
77 generic interface. This may have negative side effects when used with the old
78 Linux kernel tape driver, so you should not use that driver with
ee9fa953 79 Proxmox tape backup.
d5efa18a
DM
80
81
8a192bed
DM
82Drive Performance
83~~~~~~~~~~~~~~~~~
84
70d00e01 85Current LTO-8 tapes provide read/write speeds of up to 360 MB/s. This means,
66d06696 86that it still takes a minimum of 9 hours to completely write or
8a192bed
DM
87read a single tape (even at maximum speed).
88
53939bb4 89The only way to speed that data rate up is to use more than one
70d00e01 90drive. That way, you can run several backup jobs in parallel, or run
8a192bed
DM
91restore jobs while the other dives are used for backups.
92
70d00e01
DW
93Also consider that you first need to read data from your datastore
94(disk). However, a single spinning disk is unable to deliver data at this
66d06696 95rate. We measured a maximum rate of about 60MB/s to 100MB/s in practice,
70d00e01
DW
96so it takes 33 hours to read the 12TB needed to fill up an LTO-8 tape. If you want
97to write to your tape at full speed, please make sure that the source
53939bb4 98datastore is able to deliver that performance (for example, by using SSDs).
baefbc44 99
d5efa18a
DM
100
101Terminology
102-----------
103
10439718
DM
104**Tape Labels:**
105 are used to uniquely identify a tape. You would normally apply a
106 sticky paper label to the front of the cartridge. We additionally
107 store the label text magnetically on the tape (first file on tape).
d5efa18a
DM
108
109.. _Code 39: https://en.wikipedia.org/wiki/Code_39
110
111.. _LTO Ultrium Cartridge Label Specification: https://www.ibm.com/support/pages/ibm-lto-ultrium-cartridge-label-specification
112
8001c82e
DM
113.. _LTO Barcode Generator: lto-barcode/index.html
114
10439718
DM
115**Barcodes:**
116 are a special form of tape labels, which are electronically
117 readable. Most LTO tape robots use an 8 character string encoded as
118 `Code 39`_, as defined in the `LTO Ultrium Cartridge Label
119 Specification`_.
d5efa18a 120
10439718
DM
121 You can either buy such barcode labels from your cartridge vendor,
122 or print them yourself. You can use our `LTO Barcode Generator`_
123 app, if you would like to print them yourself.
d5efa18a 124
10439718
DM
125 .. Note:: Physical labels and the associated adhesive should have an
126 environmental performance to match or exceed the environmental
127 specifications of the cartridge to which it is applied.
d5efa18a 128
10439718
DM
129**Media Pools:**
130 A media pool is a logical container for tapes. A backup job targets
131 one media pool, so a job only uses tapes from that pool. The pool
132 additionally defines how long a backup job can append data to tapes
133 (allocation policy) and how long you want to keep the data
134 (retention policy).
08d8b2a4 135
10439718
DM
136**Media Set:**
137 A group of continuously written tapes (all from the same media pool).
d5efa18a 138
10439718
DM
139**Tape drive:**
140 The device used to read and write data to the tape. There are
141 standalone drives, but drives are usually shipped within tape
142 libraries.
d5efa18a 143
10439718
DM
144**Tape changer:**
145 A device which can change the tapes inside a tape drive (tape
146 robot). They are usually part of a tape library.
d5efa18a
DM
147
148.. _Tape Library: https://en.wikipedia.org/wiki/Tape_library
149
10439718
DM
150`Tape library`_:
151 A storage device that contains one or more tape drives, a number of
152 slots to hold tape cartridges, a barcode reader to identify tape
153 cartridges, and an automated method for loading tapes (a robot).
d5efa18a 154
10439718
DM
155 This is also commonly known as an 'autoloader', 'tape robot' or
156 'tape jukebox'.
8a192bed 157
10439718
DM
158**Inventory:**
159 The inventory stores the list of known tapes (with additional status
160 information).
4cfb1234 161
10439718
DM
162**Catalog:**
163 A media catalog stores information about the media content.
4cfb1234 164
8a192bed 165
70d00e01 166Tape Quick Start
aae5db91 167----------------
8a192bed
DM
168
1691. Configure your tape hardware (drives and changers)
170
1712. Configure one or more media pools
172
70d00e01 1733. Label your tape cartridges
8a192bed
DM
174
1754. Start your first tape backup job ...
baefbc44
DM
176
177
178Configuration
179-------------
180
181Please note that you can configure anything using the graphical user
70d00e01 182interface or the command line interface. Both methods result in the
baefbc44
DM
183same configuration.
184
225affc9 185.. _tape_changer_config:
baefbc44
DM
186
187Tape changers
188~~~~~~~~~~~~~
189
53939bb4
DW
190.. image:: images/screenshots/pbs-gui-tape-changers.png
191 :align: right
192 :alt: Tape Backup: Tape Changers
193
295bae14
TL
194Tape changers (robots) are part of a `Tape Library`_. They contain a number of
195slots to hold tape cartridges, a barcode reader to identify tape cartridges and
196an automated method for loading tapes.
197
198You can skip this step if you are using a standalone drive.
baefbc44 199
70d00e01 200Linux is able to auto detect these devices, and you can get a list
98cdee78
DM
201of available devices using:
202
203.. code-block:: console
baefbc44
DM
204
205 # proxmox-tape changer scan
a174854a
DM
206 ┌─────────────────────────────┬─────────┬──────────────┬────────┐
207 │ path │ vendor │ model │ serial │
208 ╞═════════════════════════════╪═════════╪══════════════╪════════╡
209 │ /dev/tape/by-id/scsi-CC2C52 │ Quantum │ Superloader3 │ CC2C52 │
210 └─────────────────────────────┴─────────┴──────────────┴────────┘
baefbc44 211
70d00e01 212In order to use a device with Proxmox Backup Server, you need to create a
98cdee78
DM
213configuration entry:
214
215.. code-block:: console
baefbc44 216
a174854a 217 # proxmox-tape changer create sl3 --path /dev/tape/by-id/scsi-CC2C52
baefbc44
DM
218
219Where ``sl3`` is an arbitrary name you can choose.
220
70d00e01 221.. Note:: Please use the persistent device path names from inside
baefbc44
DM
222 ``/dev/tape/by-id/``. Names like ``/dev/sg0`` may point to a
223 different device after reboot, and that is not what you want.
224
53939bb4
DW
225.. image:: images/screenshots/pbs-gui-tape-changers-add.png
226 :align: right
227 :alt: Tape Backup: Add a new tape changer
228
229This operation can also be carried out from the GUI, by navigating to the
230**Changers** tab of **Tape Backup** and clicking **Add**.
231
70d00e01 232You can display the final configuration with:
98cdee78
DM
233
234.. code-block:: console
baefbc44 235
04eba29c
DM
236 # proxmox-tape changer config sl3
237 ┌──────┬─────────────────────────────┐
238 │ Name │ Value │
239 ╞══════╪═════════════════════════════╡
240 │ name │ sl3 │
241 ├──────┼─────────────────────────────┤
242 │ path │ /dev/tape/by-id/scsi-CC2C52 │
243 └──────┴─────────────────────────────┘
244
53939bb4
DW
245Or simply list all configured changer devices (as seen in the **Changers** tab
246of the GUI):
98cdee78
DM
247
248.. code-block:: console
04eba29c 249
baefbc44 250 # proxmox-tape changer list
a174854a
DM
251 ┌──────┬─────────────────────────────┬─────────┬──────────────┬────────────┐
252 │ name │ path │ vendor │ model │ serial │
253 ╞══════╪═════════════════════════════╪═════════╪══════════════╪════════════╡
254 │ sl3 │ /dev/tape/by-id/scsi-CC2C52 │ Quantum │ Superloader3 │ CC2C52 │
255 └──────┴─────────────────────────────┴─────────┴──────────────┴────────────┘
baefbc44 256
53939bb4 257The Vendor, Model and Serial number are auto-detected, but only shown
baefbc44
DM
258if the device is online.
259
98cdee78
DM
260To test your setup, please query the status of the changer device with:
261
262.. code-block:: console
a174854a
DM
263
264 # proxmox-tape changer status sl3
265 ┌───────────────┬──────────┬────────────┬─────────────┐
266 │ entry-kind │ entry-id │ changer-id │ loaded-slot │
267 ╞═══════════════╪══════════╪════════════╪═════════════╡
268 │ drive │ 0 │ vtape1 │ 1 │
269 ├───────────────┼──────────┼────────────┼─────────────┤
270 │ slot │ 1 │ │ │
271 ├───────────────┼──────────┼────────────┼─────────────┤
272 │ slot │ 2 │ vtape2 │ │
273 ├───────────────┼──────────┼────────────┼─────────────┤
274 │ ... │ ... │ │ │
275 ├───────────────┼──────────┼────────────┼─────────────┤
276 │ slot │ 16 │ │ │
277 └───────────────┴──────────┴────────────┴─────────────┘
278
0912878e 279Tape libraries usually provide some special import/export slots (also
02633961 280called "mail slots"). Tapes inside those slots are accessible from
0912878e
DM
281outside, making it easy to add/remove tapes to/from the library. Those
282tapes are considered to be "offline", so backup jobs will not use
70d00e01 283them. Those special slots are auto-detected and marked as an
0912878e
DM
284``import-export`` slot in the status command.
285
286It's worth noting that some of the smaller tape libraries don't have
70d00e01
DW
287such slots. While they have something called a "Mail Slot", that slot
288is just a way to grab the tape from the gripper. They are unable
0912878e 289to hold media while the robot does other things. They also do not
5f3b2330 290expose that "Mail Slot" over the SCSI interface, so you won't see them in
0912878e
DM
291the status output.
292
293As a workaround, you can mark some of the normal slots as export
294slot. The software treats those slots like real ``import-export``
53939bb4 295slots, and the media inside those slots are considered to be 'offline'
98cdee78
DM
296(not available for backup):
297
298.. code-block:: console
0912878e
DM
299
300 # proxmox-tape changer update sl3 --export-slots 15,16
301
302After that, you can see those artificial ``import-export`` slots in
98cdee78
DM
303the status output:
304
305.. code-block:: console
0912878e 306
04eba29c 307 # proxmox-tape changer status sl3
0912878e
DM
308 ┌───────────────┬──────────┬────────────┬─────────────┐
309 │ entry-kind │ entry-id │ changer-id │ loaded-slot │
310 ╞═══════════════╪══════════╪════════════╪═════════════╡
311 │ drive │ 0 │ vtape1 │ 1 │
312 ├───────────────┼──────────┼────────────┼─────────────┤
313 │ import-export │ 15 │ │ │
314 ├───────────────┼──────────┼────────────┼─────────────┤
315 │ import-export │ 16 │ │ │
316 ├───────────────┼──────────┼────────────┼─────────────┤
317 │ slot │ 1 │ │ │
318 ├───────────────┼──────────┼────────────┼─────────────┤
319 │ slot │ 2 │ vtape2 │ │
320 ├───────────────┼──────────┼────────────┼─────────────┤
321 │ ... │ ... │ │ │
322 ├───────────────┼──────────┼────────────┼─────────────┤
323 │ slot │ 14 │ │ │
324 └───────────────┴──────────┴────────────┴─────────────┘
a174854a 325
225affc9 326.. _tape_drive_config:
baefbc44
DM
327
328Tape drives
329~~~~~~~~~~~
330
53939bb4
DW
331.. image:: images/screenshots/pbs-gui-tape-drives.png
332 :align: right
333 :alt: Tape Backup: Drive list
334
04eba29c 335Linux is able to auto detect tape drives, and you can get a list
98cdee78
DM
336of available tape drives using:
337
338.. code-block:: console
04eba29c
DM
339
340 # proxmox-tape drive scan
341 ┌────────────────────────────────┬────────┬─────────────┬────────┐
342 │ path │ vendor │ model │ serial │
343 ╞════════════════════════════════╪════════╪═════════════╪════════╡
ee9fa953 344 │ /dev/tape/by-id/scsi-12345-sg │ IBM │ ULT3580-TD4 │ 12345 │
04eba29c
DM
345 └────────────────────────────────┴────────┴─────────────┴────────┘
346
53939bb4
DW
347.. image:: images/screenshots/pbs-gui-tape-drives-add.png
348 :align: right
349 :alt: Tape Backup: Add a tape drive
350
04eba29c 351In order to use that drive with Proxmox, you need to create a
53939bb4
DW
352configuration entry. This can be done through **Tape Backup -> Drives** in the
353GUI or by using the command below:
98cdee78
DM
354
355.. code-block:: console
04eba29c 356
ee9fa953 357 # proxmox-tape drive create mydrive --path /dev/tape/by-id/scsi-12345-sg
04eba29c 358
70d00e01 359.. Note:: Please use the persistent device path names from inside
ee9fa953 360 ``/dev/tape/by-id/``. Names like ``/dev/sg0`` may point to a
04eba29c
DM
361 different device after reboot, and that is not what you want.
362
363If you have a tape library, you also need to set the associated
98cdee78
DM
364changer device:
365
366.. code-block:: console
04eba29c 367
627d0000 368 # proxmox-tape drive update mydrive --changer sl3 --changer-drivenum 0
04eba29c 369
627d0000 370The ``--changer-drivenum`` is only necessary if the tape library
70d00e01 371includes more than one drive (the changer status command lists all
02633961 372drive numbers).
04eba29c 373
70d00e01 374You can display the final configuration with:
98cdee78
DM
375
376.. code-block:: console
04eba29c
DM
377
378 # proxmox-tape drive config mydrive
379 ┌─────────┬────────────────────────────────┐
380 │ Name │ Value │
381 ╞═════════╪════════════════════════════════╡
382 │ name │ mydrive │
383 ├─────────┼────────────────────────────────┤
ee9fa953 384 │ path │ /dev/tape/by-id/scsi-12345-sg │
04eba29c
DM
385 ├─────────┼────────────────────────────────┤
386 │ changer │ sl3 │
387 └─────────┴────────────────────────────────┘
388
627d0000 389.. NOTE:: The ``changer-drivenum`` value 0 is not stored in the
70d00e01 390 configuration, because it is the default.
04eba29c 391
98cdee78
DM
392To list all configured drives use:
393
394.. code-block:: console
04eba29c
DM
395
396 # proxmox-tape drive list
397 ┌──────────┬────────────────────────────────┬─────────┬────────┬─────────────┬────────┐
398 │ name │ path │ changer │ vendor │ model │ serial │
399 ╞══════════╪════════════════════════════════╪═════════╪════════╪═════════════╪════════╡
ee9fa953 400 │ mydrive │ /dev/tape/by-id/scsi-12345-sg │ sl3 │ IBM │ ULT3580-TD4 │ 12345 │
04eba29c
DM
401 └──────────┴────────────────────────────────┴─────────┴────────┴─────────────┴────────┘
402
53939bb4 403The Vendor, Model and Serial number are auto detected and only shown
04eba29c
DM
404if the device is online.
405
98cdee78
DM
406For testing, you can simply query the drive status with:
407
408.. code-block:: console
632756b6
DM
409
410 # proxmox-tape status --drive mydrive
54311a38
DM
411 ┌────────────────┬──────────────────────────┐
412 │ Name │ Value │
413 ╞════════════════╪══════════════════════════╡
414 │ blocksize │ 0 │
415 ├────────────────┼──────────────────────────┤
416 │ density │ LTO4 │
417 ├────────────────┼──────────────────────────┤
418 │ compression │ 1 │
419 ├────────────────┼──────────────────────────┤
420 │ buffer-mode │ 1 │
421 ├────────────────┼──────────────────────────┤
422 │ alert-flags │ (empty) │
423 ├────────────────┼──────────────────────────┤
424 │ file-number │ 0 │
425 ├────────────────┼──────────────────────────┤
426 │ block-number │ 0 │
427 ├────────────────┼──────────────────────────┤
428 │ manufactured │ Fri Dec 13 01:00:00 2019 │
429 ├────────────────┼──────────────────────────┤
430 │ bytes-written │ 501.80 GiB │
431 ├────────────────┼──────────────────────────┤
432 │ bytes-read │ 4.00 MiB │
433 ├────────────────┼──────────────────────────┤
434 │ medium-passes │ 20 │
435 ├────────────────┼──────────────────────────┤
436 │ medium-wearout │ 0.12% │
437 ├────────────────┼──────────────────────────┤
438 │ volume-mounts │ 2 │
439 └────────────────┴──────────────────────────┘
632756b6
DM
440
441.. NOTE:: Blocksize should always be 0 (variable block size
70d00e01 442 mode). This is the default anyway.
632756b6 443
baefbc44 444
225affc9
DM
445.. _tape_media_pool_config:
446
baefbc44
DM
447Media Pools
448~~~~~~~~~~~
449
53939bb4
DW
450.. image:: images/screenshots/pbs-gui-tape-pools.png
451 :align: right
452 :alt: Tape Backup: Media Pools
453
08d8b2a4 454A media pool is a logical container for tapes. A backup job targets
53939bb4 455a single media pool, so a job only uses tapes from that pool.
08d8b2a4
DM
456
457.. topic:: Media Set
458
459 A media set is a group of continuously written tapes, used to split
460 the larger pool into smaller, restorable units. One or more backup
59217472 461 jobs write to a media set, producing an ordered group of
70d00e01
DW
462 tapes. Media sets are identified by a unique ID. That ID and the
463 sequence number are stored on each tape of that set (tape label).
08d8b2a4 464
70d00e01
DW
465 Media sets are the basic unit for restore tasks. This means that you need
466 every tape in the set to restore the media set contents. Data is fully
08d8b2a4
DM
467 deduplicated inside a media set.
468
469
470.. topic:: Media Set Allocation Policy
471
472 The pool additionally defines how long backup jobs can append data
59217472 473 to a media set. The following settings are possible:
08d8b2a4 474
b3bed7e4 475 - Try to use the current media set (``continue``).
08d8b2a4 476
70d00e01 477 This setting produces one large media set. While this is very
59217472 478 space efficient (deduplication, no unused space), it can lead to
70d00e01 479 long restore times, because restore jobs need to read all tapes in the
59217472 480 set.
08d8b2a4 481
70d00e01 482 .. NOTE:: Data is fully deduplicated inside a media set. This
59217472 483 also means that data is randomly distributed over the tapes in
70d00e01
DW
484 the set. Thus, even if you restore a single VM, data may have to be
485 read from all tapes inside the media set.
59217472 486
70d00e01
DW
487 Larger media sets are also more error-prone, because a single
488 damaged tape makes the restore fail.
59217472 489
70d00e01 490 Usage scenario: Mostly used with tape libraries. You manually
59217472
DM
491 trigger new set creation by running a backup job with the
492 ``--export`` option.
493
e84b801c 494 .. NOTE:: Retention period starts with the existence of a newer
02633961 495 media set.
e84b801c 496
b3bed7e4 497 - Always create a new media set (``always``).
59217472 498
70d00e01
DW
499 With this setting, each backup job creates a new media set. This
500 is less space efficient, because the media from the last set
59217472
DM
501 may not be fully written, leaving the remaining space unused.
502
503 The advantage is that this procudes media sets of minimal
70d00e01
DW
504 size. Small sets are easier to handle, can be moved more conveniently
505 to an off-site vault, and can be restored much faster.
59217472 506
e84b801c
DM
507 .. NOTE:: Retention period starts with the creation time of the
508 media set.
509
59217472
DM
510 - Create a new set when the specified Calendar Event triggers.
511
512 .. _systemd.time manpage: https://manpages.debian.org/buster/systemd/systemd.time.7.en.html
513
514 This allows you to specify points in time by using systemd like
515 Calendar Event specifications (see `systemd.time manpage`_).
516
517 For example, the value ``weekly`` (or ``Mon *-*-* 00:00:00``)
518 will create a new set each week.
519
02633961 520 This balances between space efficiency and media count.
08d8b2a4 521
e84b801c
DM
522 .. NOTE:: Retention period starts when the calendar event
523 triggers.
524
08d8b2a4
DM
525 Additionally, the following events may allocate a new media set:
526
59217472 527 - Required tape is offline (and you use a tape library).
08d8b2a4 528
3f4a62de 529 - Current set contains damaged or retired tapes.
08d8b2a4 530
70d00e01 531 - Media pool encryption has changed
6dd05135 532
70d00e01
DW
533 - Database consistency errors, for example, if the inventory does not
534 contain the required media information, or it contains conflicting
535 information (outdated data).
08d8b2a4
DM
536
537.. topic:: Retention Policy
538
e84b801c 539 Defines how long we want to keep the data.
08d8b2a4 540
3838ce33
DM
541 - Always overwrite media.
542
543 - Protect data for the duration specified.
544
545 We use systemd like time spans to specify durations, e.g. ``2
546 weeks`` (see `systemd.time manpage`_).
547
548 - Never overwrite data.
08d8b2a4 549
794b0fe9
DM
550.. topic:: Hardware Encryption
551
70d00e01 552 LTO-4 (or later) tape drives support hardware encryption. If you
794b0fe9
DM
553 configure the media pool to use encryption, all data written to the
554 tapes is encrypted using the configured key.
555
70d00e01
DW
556 This way, unauthorized users cannot read data from the media,
557 for example, if you loose a tape while shipping to an offsite location.
794b0fe9 558
70d00e01 559 .. Note:: If the backup client also encrypts data, data on the tape
794b0fe9
DM
560 will be double encrypted.
561
70d00e01 562 The password protected key is stored on each medium, so that it is
ee9fa953 563 possbible to `restore the key <tape_restore_encryption_key_>`_ using
70d00e01
DW
564 the password. Please make sure to remember the password, in case
565 you need to restore the key.
794b0fe9 566
0bce2118 567
70d00e01
DW
568.. NOTE:: We use global content namespace, meaning we do not store the
569 source datastore name. Because of this, it is impossible to distinguish
570 store1:/vm/100 from store2:/vm/100. Please use different media pools
571 if the sources are from different namespaces with conflicting names
572 (for example, if the sources are from different Proxmox VE clusters).
08d8b2a4 573
53939bb4
DW
574.. image:: images/screenshots/pbs-gui-tape-pools-add.png
575 :align: right
576 :alt: Tape Backup: Add a media pool
08d8b2a4 577
53939bb4
DW
578To create a new media pool, add one from **Tape Backup -> Media Pools** in the
579GUI, or enter the following command:
98cdee78
DM
580
581.. code-block:: console
0bce2118
DM
582
583 // proxmox-tape pool create <name> --drive <string> [OPTIONS]
584
585 # proxmox-tape pool create daily --drive mydrive
586
08d8b2a4 587
53939bb4 588Additional options can be set later, using the update command:
98cdee78
DM
589
590.. code-block:: console
08d8b2a4 591
0bce2118
DM
592 # proxmox-tape pool update daily --allocation daily --retention 7days
593
594
98cdee78
DM
595To list all configured pools use:
596
597.. code-block:: console
0bce2118
DM
598
599 # proxmox-tape pool list
600 ┌───────┬──────────┬────────────┬───────────┬──────────┐
601 │ name │ drive │ allocation │ retention │ template │
602 ╞═══════╪══════════╪════════════╪═══════════╪══════════╡
603 │ daily │ mydrive │ daily │ 7days │ │
604 └───────┴──────────┴────────────┴───────────┴──────────┘
08d8b2a4 605
225affc9 606.. _tape_backup_job_config:
baefbc44 607
9cf45049
DM
608Tape Backup Jobs
609~~~~~~~~~~~~~~~~
610
53939bb4
DW
611.. image:: images/screenshots/pbs-gui-tape-backup-jobs.png
612 :align: right
613 :alt: Tape Backup: Tape Backup Jobs
614
9cf45049 615To automate tape backup, you can configure tape backup jobs which
70d00e01
DW
616write datastore content to a media pool, based on a specific time schedule.
617The required settings are:
9cf45049
DM
618
619- ``store``: The datastore you want to backup
620
621- ``pool``: The media pool - only tape cartridges from that pool are
622 used.
623
624- ``drive``: The tape drive.
625
626- ``schedule``: Job schedule (see :ref:`calendar-event-scheduling`)
627
628For example, to configure a tape backup job for datastore ``vmstore1``
629use:
630
631.. code-block:: console
632
633 # proxmox-tape backup-job create job2 --store vmstore1 \
634 --pool yourpool --drive yourdrive --schedule daily
635
70d00e01 636The backup includes all snapshots from a backup group by default. You can
9cf45049
DM
637set the ``latest-only`` flag to include only the latest snapshots:
638
639.. code-block:: console
640
641 # proxmox-tape backup-job update job2 --latest-only
642
70d00e01 643Backup jobs can use email to send tape request notifications or
9cf45049
DM
644report errors. You can set the notification user with:
645
646.. code-block:: console
647
648 # proxmox-tape backup-job update job2 --notify-user root@pam
649
650.. Note:: The email address is a property of the user (see :ref:`user_mgmt`).
651
652It is sometimes useful to eject the tape from the drive after a
70d00e01 653backup. For a standalone drive, the ``eject-media`` option ejects the
9cf45049
DM
654tape, making sure that the following backup cannot use the tape
655(unless someone manually loads the tape again). For tape libraries,
656this option unloads the tape to a free slot, which provides better
657dust protection than inside a drive:
658
659.. code-block:: console
660
661 # proxmox-tape backup-job update job2 --eject-media
662
70d00e01 663.. Note:: For failed jobs, the tape remains in the drive.
9cf45049 664
70d00e01 665For tape libraries, the ``export-media`` option moves all tapes from
9cf45049 666the media set to an export slot, making sure that the following backup
70d00e01 667cannot use the tapes. An operator can pick up those tapes and move them
9cf45049
DM
668to a vault.
669
670.. code-block:: console
671
672 # proxmox-tape backup-job update job2 --export-media
673
674.. Note:: The ``export-media`` option can be used to force the start
675 of a new media set, because tapes from the current set are no
676 longer online.
677
678It is also possible to run backup jobs manually:
679
680.. code-block:: console
681
682 # proxmox-tape backup-job run job2
683
684To remove a job, please use:
685
686.. code-block:: console
687
688 # proxmox-tape backup-job remove job2
baefbc44 689
53939bb4
DW
690.. image:: images/screenshots/pbs-gui-tape-backup-jobs-add.png
691 :align: right
692 :alt: Tape Backup: Add a backup job
693
694This same functionality also exists in the GUI, under the **Backup Jobs** tab of
695**Tape Backup**, where *Local Datastore* relates to the datastore you want to
696backup and *Media Pool* is the pool to back up to.
697
baefbc44
DM
698
699Administration
700--------------
701
70d00e01 702Many sub-commands of the ``proxmox-tape`` command line tools take a
44ce25e7 703parameter called ``--drive``, which specifies the tape drive you want
70d00e01 704to work on. For convenience, you can set this in an environment
98cdee78
DM
705variable:
706
707.. code-block:: console
44ce25e7
DM
708
709 # export PROXMOX_TAPE_DRIVE=mydrive
710
711You can then omit the ``--drive`` parameter from the command. If the
712drive has an associated changer device, you may also omit the changer
53939bb4 713parameter from commands that need a changer device, for example:
98cdee78
DM
714
715.. code-block:: console
44ce25e7
DM
716
717 # proxmox-tape changer status
718
70d00e01 719should display the changer status of the changer device associated with
44ce25e7
DM
720drive ``mydrive``.
721
722
baefbc44
DM
723Label Tapes
724~~~~~~~~~~~
725
70d00e01
DW
726By default, tape cartridges all look the same, so you need to put a
727label on them for unique identification. First, put a sticky paper
8001c82e
DM
728label with some human readable text on the cartridge.
729
730If you use a `Tape Library`_, you should use an 8 character string
70d00e01
DW
731encoded as `Code 39`_, as defined in the `LTO Ultrium Cartridge Label
732Specification`_. You can either buy such barcode labels from your
733cartridge vendor, or print them yourself. You can use our `LTO Barcode
734Generator`_ app to print them.
8001c82e
DM
735
736Next, you need to write that same label text to the tape, so that the
737software can uniquely identify the tape too.
738
70d00e01 739For a standalone drive, manually insert the new tape cartridge into the
98cdee78
DM
740drive and run:
741
742.. code-block:: console
8001c82e 743
0bce2118
DM
744 # proxmox-tape label --changer-id <label-text> [--pool <pool-name>]
745
746You may omit the ``--pool`` argument to allow the tape to be used by any pool.
8001c82e 747
70d00e01 748.. Note:: For safety reasons, this command fails if the tape contains
02633961 749 any data. If you want to overwrite it anyway, erase the tape first.
8001c82e 750
98cdee78
DM
751You can verify success by reading back the label:
752
753.. code-block:: console
8001c82e 754
0bce2118
DM
755 # proxmox-tape read-label
756 ┌─────────────────┬──────────────────────────────────────┐
757 │ Name │ Value │
758 ╞═════════════════╪══════════════════════════════════════╡
759 │ changer-id │ vtape1 │
760 ├─────────────────┼──────────────────────────────────────┤
761 │ uuid │ 7f42c4dd-9626-4d89-9f2b-c7bc6da7d533 │
762 ├─────────────────┼──────────────────────────────────────┤
763 │ ctime │ Wed Jan 6 09:07:51 2021 │
764 ├─────────────────┼──────────────────────────────────────┤
765 │ pool │ daily │
766 ├─────────────────┼──────────────────────────────────────┤
767 │ media-set-uuid │ 00000000-0000-0000-0000-000000000000 │
768 ├─────────────────┼──────────────────────────────────────┤
769 │ media-set-ctime │ Wed Jan 6 09:07:51 2021 │
770 └─────────────────┴──────────────────────────────────────┘
771
772.. NOTE:: The ``media-set-uuid`` using all zeros indicates an empty
773 tape (not used by any media set).
8001c82e
DM
774
775If you have a tape library, apply the sticky barcode label to the tape
776cartridges first. Then load those empty tapes into the library. You
98cdee78
DM
777can then label all unlabeled tapes with a single command:
778
779.. code-block:: console
8001c82e 780
0bce2118 781 # proxmox-tape barcode-label [--pool <pool-name>]
8001c82e
DM
782
783
baefbc44
DM
784Run Tape Backups
785~~~~~~~~~~~~~~~~
786
53939bb4 787To manually run a backup job click *Run Now* in the GUI or use the command:
98cdee78
DM
788
789.. code-block:: console
9738dd54
DM
790
791 # proxmox-tape backup <store> <pool> [OPTIONS]
792
793The following options are available:
794
795--eject-media Eject media upon job completion.
796
797 It is normally good practice to eject the tape after use. This unmounts the
70d00e01 798 tape from the drive and prevents the tape from getting dusty.
9738dd54
DM
799
800--export-media-set Export media set upon job completion.
801
02633961 802 After a successful backup job, this moves all tapes from the used
9738dd54
DM
803 media set into import-export slots. The operator can then pick up
804 those tapes and move them to a media vault.
805
806
baefbc44
DM
807Restore from Tape
808~~~~~~~~~~~~~~~~~
809
4cfb1234
DM
810Restore is done at media-set granularity, so you first need to find
811out which media set contains the data you want to restore. This
812information is stored in the media catalog. If you do not have media
813catalogs, you need to restore them first. Please note that you need
814the catalog to find your data, but restoring a complete media-set does
815not need media catalogs.
816
70d00e01 817The following command lists the media content (from catalog):
98cdee78
DM
818
819.. code-block:: console
4cfb1234
DM
820
821 # proxmox-tape media content
822 ┌────────────┬──────┬──────────────────────────┬────────┬────────────────────────────────┬──────────────────────────────────────┐
823 │ label-text │ pool │ media-set-name │ seq-nr │ snapshot │ media-set-uuid │
824 ╞════════════╪══════╪══════════════════════════╪════════╪════════════════════════════════╪══════════════════════════════════════╡
825 │ TEST01L8 │ p2 │ Wed Jan 13 13:55:55 2021 │ 0 │ vm/201/2021-01-11T10:43:48Z │ 9da37a55-aac7-4deb-91c6-482b3b675f30 │
826 ├────────────┼──────┼──────────────────────────┼────────┼────────────────────────────────┼──────────────────────────────────────┤
827 │ ... │ ... │ ... │ ... │ ... │ ... │
828 └────────────┴──────┴──────────────────────────┴────────┴────────────────────────────────┴──────────────────────────────────────┘
829
830
831A restore job reads the data from the media set and moves it back to
98cdee78
DM
832data disk (datastore):
833
834.. code-block:: console
4cfb1234
DM
835
836 // proxmox-tape restore <media-set-uuid> <datastore>
837
838 # proxmox-tape restore 9da37a55-aac7-4deb-91c6-482b3b675f30 mystore
839
840
baefbc44
DM
841Update Inventory
842~~~~~~~~~~~~~~~~
843
4cfb1234 844
baefbc44
DM
845Restore Catalog
846~~~~~~~~~~~~~~~
9738dd54 847
a5f30a56
DC
848To restore a catalog from an existing tape, just insert the tape into the drive
849and execute:
850
851.. code-block:: console
852
853 # proxmox-tape catalog
854
855
856You can restore from a tape even without an existing catalog, but only the
857whole media set. If you do this, the catalog will be automatically created.
858
4cfb1234 859
794b0fe9
DM
860Encryption Key Management
861~~~~~~~~~~~~~~~~~~~~~~~~~
862
53939bb4
DW
863.. image:: images/screenshots/pbs-gui-tape-crypt-keys.png
864 :align: right
865 :alt: Tape Backup: Encryption Keys
866
867Proxmox Backup Server also provides an interface for handling encryption keys on
868the backup server. Encryption keys can be managed from the **Tape Backup ->
869Encryption Keys** section of the GUI or through the ``proxmox-tape key`` command
870line tool. To create a new encryption key from the command line:
98cdee78
DM
871
872.. code-block:: console
794b0fe9
DM
873
874 # proxmox-tape key create --hint "tape pw 2020"
875 Tape Encryption Key Password: **********
876 Verify Password: **********
877 "14:f8:79:b9:f5:13:e5:dc:bf:b6:f9:88:48:51:81:dc:79:bf:a0:22:68:47:d1:73:35:2d:b6:20:e1:7f:f5:0f"
878
98cdee78
DM
879List existing encryption keys:
880
881.. code-block:: console
794b0fe9
DM
882
883 # proxmox-tape key list
884 ┌───────────────────────────────────────────────────┬───────────────┐
885 │ fingerprint │ hint │
886 ╞═══════════════════════════════════════════════════╪═══════════════╡
887 │ 14:f8:79:b9:f5:13:e5:dc: ... :b6:20:e1:7f:f5:0f │ tape pw 2020 │
888 └───────────────────────────────────────────────────┴───────────────┘
889
98cdee78
DM
890To show encryption key details:
891
892.. code-block:: console
794b0fe9
DM
893
894 # proxmox-tape key show 14:f8:79:b9:f5:13:e5:dc:...:b6:20:e1:7f:f5:0f
895 ┌─────────────┬───────────────────────────────────────────────┐
896 │ Name │ Value │
897 ╞═════════════╪═══════════════════════════════════════════════╡
898 │ kdf │ scrypt │
899 ├─────────────┼───────────────────────────────────────────────┤
900 │ created │ Sat Jan 23 14:47:21 2021 │
901 ├─────────────┼───────────────────────────────────────────────┤
902 │ modified │ Sat Jan 23 14:47:21 2021 │
903 ├─────────────┼───────────────────────────────────────────────┤
904 │ fingerprint │ 14:f8:79:b9:f5:13:e5:dc:...:b6:20:e1:7f:f5:0f │
905 ├─────────────┼───────────────────────────────────────────────┤
906 │ hint │ tape pw 2020 │
907 └─────────────┴───────────────────────────────────────────────┘
908
8ba47929
DM
909The ``paperkey`` subcommand can be used to create a QR encoded
910version of a tape encryption key. The following command sends the output of the
98cdee78
DM
911``paperkey`` command to a text file, for easy printing:
912
913.. code-block:: console
8ba47929
DM
914
915 proxmox-tape key paperkey <fingerprint> --output-format text > qrkey.txt
916
917
225affc9 918.. _tape_restore_encryption_key:
794b0fe9
DM
919
920Restoring Encryption Keys
921^^^^^^^^^^^^^^^^^^^^^^^^^
922
923You can restore the encryption key from the tape, using the password
924used to generate the key. First, load the tape you want to restore
98cdee78
DM
925into the drive. Then run:
926
927.. code-block:: console
794b0fe9
DM
928
929 # proxmox-tape key restore
930 Tepe Encryption Key Password: ***********
931
932If the password is correct, the key will get imported to the
02633961 933database. Further restore jobs automatically use any available key.
794b0fe9 934
4cfb1234 935
9738dd54
DM
936Tape Cleaning
937~~~~~~~~~~~~~
938
70d00e01 939LTO tape drives require regular cleaning. This is done by loading a
9738dd54
DM
940cleaning cartridge into the drive, which is a manual task for
941standalone drives.
942
943For tape libraries, cleaning cartridges are identified using special
944labels starting with letters "CLN". For example, our tape library has a
98cdee78
DM
945cleaning cartridge inside slot 3:
946
947.. code-block:: console
9738dd54
DM
948
949 # proxmox-tape changer status sl3
950 ┌───────────────┬──────────┬────────────┬─────────────┐
951 │ entry-kind │ entry-id │ changer-id │ loaded-slot │
952 ╞═══════════════╪══════════╪════════════╪═════════════╡
953 │ drive │ 0 │ vtape1 │ 1 │
954 ├───────────────┼──────────┼────────────┼─────────────┤
955 │ slot │ 1 │ │ │
956 ├───────────────┼──────────┼────────────┼─────────────┤
957 │ slot │ 2 │ vtape2 │ │
958 ├───────────────┼──────────┼────────────┼─────────────┤
959 │ slot │ 3 │ CLN001CU │ │
960 ├───────────────┼──────────┼────────────┼─────────────┤
961 │ ... │ ... │ │ │
962 └───────────────┴──────────┴────────────┴─────────────┘
963
98cdee78
DM
964To initiate a cleaning operation simply run:
965
966.. code-block:: console
9738dd54
DM
967
968 # proxmox-tape clean
969
970This command does the following:
971
972- find the cleaning tape (in slot 3)
973
70d00e01 974- unload the current media from the drive (back to slot 1)
9738dd54
DM
975
976- load the cleaning tape into the drive
977
978- run drive cleaning operation
979
980- unload the cleaning tape (to slot 3)