]> git.proxmox.com Git - proxmox-backup.git/blame - docs/storage.rst
fix build: install proxmox-tape man page
[proxmox-backup.git] / docs / storage.rst
CommitLineData
04e24b14
DW
1Storage
2=======
3
ee0ab12d
TL
4.. _storage_disk_management:
5
04e24b14
DW
6Disk Management
7---------------
8
9.. image:: images/screenshots/pbs-gui-disks.png
10 :align: right
11 :alt: List of disks
12
13Proxmox Backup Server comes with a set of disk utilities, which are
14accessed using the ``disk`` subcommand. This subcommand allows you to initialize
15disks, create various filesystems, and get information about the disks.
16
17To view the disks connected to the system, navigate to **Administration ->
18Disks** in the web interface or use the ``list`` subcommand of
19``disk``:
20
21.. code-block:: console
22
23 # proxmox-backup-manager disk list
24 ┌──────┬────────┬─────┬───────────┬─────────────┬───────────────┬─────────┬────────┐
25 │ name │ used │ gpt │ disk-type │ size │ model │ wearout │ status │
26 ╞══════╪════════╪═════╪═══════════╪═════════════╪═══════════════╪═════════╪════════╡
27 │ sda │ lvm │ 1 │ hdd │ 34359738368 │ QEMU_HARDDISK │ - │ passed │
28 ├──────┼────────┼─────┼───────────┼─────────────┼───────────────┼─────────┼────────┤
29 │ sdb │ unused │ 1 │ hdd │ 68719476736 │ QEMU_HARDDISK │ - │ passed │
30 ├──────┼────────┼─────┼───────────┼─────────────┼───────────────┼─────────┼────────┤
31 │ sdc │ unused │ 1 │ hdd │ 68719476736 │ QEMU_HARDDISK │ - │ passed │
32 └──────┴────────┴─────┴───────────┴─────────────┴───────────────┴─────────┴────────┘
33
34To initialize a disk with a new GPT, use the ``initialize`` subcommand:
35
36.. code-block:: console
37
38 # proxmox-backup-manager disk initialize sdX
39
40.. image:: images/screenshots/pbs-gui-disks-dir-create.png
41 :align: right
42 :alt: Create a directory
43
44You can create an ``ext4`` or ``xfs`` filesystem on a disk using ``fs
45create``, or by navigating to **Administration -> Disks -> Directory** in the
46web interface and creating one from there. The following command creates an
47``ext4`` filesystem and passes the ``--add-datastore`` parameter, in order to
48automatically create a datastore on the disk (in this case ``sdd``). This will
49create a datastore at the location ``/mnt/datastore/store1``:
50
51.. code-block:: console
52
53 # proxmox-backup-manager disk fs create store1 --disk sdd --filesystem ext4 --add-datastore true
54
55.. image:: images/screenshots/pbs-gui-disks-zfs-create.png
56 :align: right
57 :alt: Create ZFS
58
59You can also create a ``zpool`` with various raid levels from **Administration
60-> Disks -> Zpool** in the web interface, or by using ``zpool create``. The command
61below creates a mirrored ``zpool`` using two disks (``sdb`` & ``sdc``) and
f5d9f253 62mounts it under ``/mnt/datastore/zpool1``:
04e24b14
DW
63
64.. code-block:: console
65
66 # proxmox-backup-manager disk zpool create zpool1 --devices sdb,sdc --raidlevel mirror
67
68.. note:: You can also pass the ``--add-datastore`` parameter here, to automatically
69 create a datastore from the disk.
70
71You can use ``disk fs list`` and ``disk zpool list`` to keep track of your
72filesystems and zpools respectively.
73
74Proxmox Backup Server uses the package smartmontools. This is a set of tools
75used to monitor and control the S.M.A.R.T. system for local hard disks. If a
76disk supports S.M.A.R.T. capability, and you have this enabled, you can
77display S.M.A.R.T. attributes from the web interface or by using the command:
78
79.. code-block:: console
80
81 # proxmox-backup-manager disk smart-attributes sdX
82
83.. note:: This functionality may also be accessed directly through the use of
84 the ``smartctl`` command, which comes as part of the smartmontools package
85 (see ``man smartctl`` for more details).
86
87
88.. _datastore_intro:
89
030464d3 90:term:`Datastore`
04e24b14
DW
91-----------------
92
93A datastore refers to a location at which backups are stored. The current
3bbb70b3 94implementation uses a directory inside a standard Unix file system (``ext4``,
04e24b14
DW
95``xfs`` or ``zfs``) to store the backup data.
96
97Datastores are identified by a simple *ID*. You can configure this
98when setting up the datastore. The configuration information for datastores
99is stored in the file ``/etc/proxmox-backup/datastore.cfg``.
100
101.. note:: The `File Layout`_ requires the file system to support at least *65538*
102 subdirectories per directory. That number comes from the 2\ :sup:`16`
103 pre-created chunk namespace directories, and the ``.`` and ``..`` default
104 directory entries. This requirement excludes certain filesystems and
105 filesystem configuration from being supported for a datastore. For example,
106 ``ext3`` as a whole or ``ext4`` with the ``dir_nlink`` feature manually disabled.
107
108
109Datastore Configuration
110~~~~~~~~~~~~~~~~~~~~~~~
111
f608e74c 112.. image:: images/screenshots/pbs-gui-datastore-content.png
04e24b14
DW
113 :align: right
114 :alt: Datastore Overview
115
116You can configure multiple datastores. Minimum one datastore needs to be
117configured. The datastore is identified by a simple *name* and points to a
118directory on the filesystem. Each datastore also has associated retention
119settings of how many backup snapshots for each interval of ``hourly``,
120``daily``, ``weekly``, ``monthly``, ``yearly`` as well as a time-independent
4c3efb53 121number of backups to keep in that store. :ref:`backup-pruning` and
a98e2287
AL
122:ref:`garbage collection <client_garbage-collection>` can also be configured to run
123periodically based on a configured schedule (see :ref:`calendar-event-scheduling`) per datastore.
04e24b14
DW
124
125
ee0ab12d
TL
126.. _storage_datastore_create:
127
04e24b14
DW
128Creating a Datastore
129^^^^^^^^^^^^^^^^^^^^
130.. image:: images/screenshots/pbs-gui-datastore-create-general.png
131 :align: right
132 :alt: Create a datastore
133
f608e74c
DW
134You can create a new datastore from the web interface, by clicking **Add
135Datastore** in the side menu, under the **Datastore** section. In the setup
136window:
04e24b14
DW
137
138* *Name* refers to the name of the datastore
139* *Backing Path* is the path to the directory upon which you want to create the
140 datastore
141* *GC Schedule* refers to the time and intervals at which garbage collection
142 runs
143* *Prune Schedule* refers to the frequency at which pruning takes place
f608e74c
DW
144* *Prune Options* set the amount of backups which you would like to keep (see
145 :ref:`backup-pruning`).
146* *Comment* can be used to add some contextual information to the datastore.
04e24b14
DW
147
148Alternatively you can create a new datastore from the command line. The
149following command creates a new datastore called ``store1`` on :file:`/backup/disk1/store1`
150
151.. code-block:: console
152
153 # proxmox-backup-manager datastore create store1 /backup/disk1/store1
154
155
156Managing Datastores
157^^^^^^^^^^^^^^^^^^^
158
159To list existing datastores from the command line run:
160
161.. code-block:: console
162
163 # proxmox-backup-manager datastore list
164 ┌────────┬──────────────────────┬─────────────────────────────┐
165 │ name │ path │ comment │
166 ╞════════╪══════════════════════╪═════════════════════════════╡
167 │ store1 │ /backup/disk1/store1 │ This is my default storage. │
168 └────────┴──────────────────────┴─────────────────────────────┘
169
170You can change the garbage collection and prune settings of a datastore, by
171editing the datastore from the GUI or by using the ``update`` subcommand. For
172example, the below command changes the garbage collection schedule using the
173``update`` subcommand and prints the properties of the datastore with the
174``show`` subcommand:
175
176.. code-block:: console
177
178 # proxmox-backup-manager datastore update store1 --gc-schedule 'Tue 04:27'
179 # proxmox-backup-manager datastore show store1
180 ┌────────────────┬─────────────────────────────┐
181 │ Name │ Value │
182 ╞════════════════╪═════════════════════════════╡
183 │ name │ store1 │
184 ├────────────────┼─────────────────────────────┤
185 │ path │ /backup/disk1/store1 │
186 ├────────────────┼─────────────────────────────┤
187 │ comment │ This is my default storage. │
188 ├────────────────┼─────────────────────────────┤
189 │ gc-schedule │ Tue 04:27 │
190 ├────────────────┼─────────────────────────────┤
191 │ keep-last │ 7 │
192 ├────────────────┼─────────────────────────────┤
193 │ prune-schedule │ daily │
194 └────────────────┴─────────────────────────────┘
195
196Finally, it is possible to remove the datastore configuration:
197
198.. code-block:: console
199
200 # proxmox-backup-manager datastore remove store1
201
202.. note:: The above command removes only the datastore configuration. It does
203 not delete any data from the underlying directory.
204
205
206File Layout
207^^^^^^^^^^^
208
209After creating a datastore, the following default layout will appear:
210
211.. code-block:: console
212
213 # ls -arilh /backup/disk1/store1
214 276493 -rw-r--r-- 1 backup backup 0 Jul 8 12:35 .lock
215 276490 drwxr-x--- 1 backup backup 1064960 Jul 8 12:35 .chunks
216
217`.lock` is an empty file used for process locking.
218
219The `.chunks` directory contains folders, starting from `0000` and taking hexadecimal values until `ffff`. These
220directories will store the chunked data after a backup operation has been executed.
221
222.. code-block:: console
223
224 # ls -arilh /backup/disk1/store1/.chunks
225 545824 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 ffff
226 545823 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 fffe
227 415621 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 fffd
228 415620 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 fffc
229 353187 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 fffb
230 344995 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 fffa
231 144079 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 fff9
232 144078 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 fff8
233 144077 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 fff7
234 ...
235 403180 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 000c
236 403179 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 000b
237 403177 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 000a
238 402530 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 0009
239 402513 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 0008
240 402509 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 0007
241 276509 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 0006
242 276508 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 0005
243 276507 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 0004
244 276501 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 0003
245 276499 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 0002
246 276498 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 0001
247 276494 drwxr-x--- 2 backup backup 4.0K Jul 8 12:35 0000
248 276489 drwxr-xr-x 3 backup backup 4.0K Jul 8 12:35 ..
249 276490 drwxr-x--- 1 backup backup 1.1M Jul 8 12:35 .
250
251