]> git.proxmox.com Git - pve-docs.git/blame - pvesm.adoc
basic network reload documentation
[pve-docs.git] / pvesm.adoc
CommitLineData
80c0adcb 1[[chapter_storage]]
aa039b0f 2ifdef::manvolnum[]
b2f242ab
DM
3pvesm(1)
4========
5f09af76
DM
5:pve-toplevel:
6
aa039b0f
DM
7NAME
8----
9
10pvesm - Proxmox VE Storage Manager
11
12
49a5e11c 13SYNOPSIS
aa039b0f
DM
14--------
15
16include::pvesm.1-synopsis.adoc[]
17
18DESCRIPTION
19-----------
20endif::manvolnum[]
aa039b0f
DM
21ifndef::manvolnum[]
22{pve} Storage
23=============
194d2f29 24:pve-toplevel:
aa039b0f 25endif::manvolnum[]
5f09af76 26ifdef::wiki[]
cb84ed18 27:title: Storage
5f09af76
DM
28endif::wiki[]
29
aa039b0f
DM
30The {pve} storage model is very flexible. Virtual machine images
31can either be stored on one or several local storages, or on shared
32storage like NFS or iSCSI (NAS, SAN). There are no limits, and you may
33configure as many storage pools as you like. You can use all
34storage technologies available for Debian Linux.
35
36One major benefit of storing VMs on shared storage is the ability to
37live-migrate running machines without any downtime, as all nodes in
38the cluster have direct access to VM disk images. There is no need to
39copy VM image data, so live migration is very fast in that case.
40
8c1189b6 41The storage library (package `libpve-storage-perl`) uses a flexible
aa039b0f 42plugin system to provide a common interface to all storage types. This
cc15d2c5 43can be easily adopted to include further storage types in the future.
aa039b0f
DM
44
45
46Storage Types
47-------------
48
49There are basically two different classes of storage types:
50
e21e6f8a
TL
51File level storage::
52
cc15d2c5 53File level based storage technologies allow access to a fully featured (POSIX)
e21e6f8a
TL
54file system. They are in general more flexible than any Block level storage
55(see below), and allow you to store content of any type. ZFS is probably the
56most advanced system, and it has full support for snapshots and clones.
57
aa039b0f
DM
58Block level storage::
59
60Allows to store large 'raw' images. It is usually not possible to store
61other files (ISO, backups, ..) on such storage types. Most modern
62block level storage implementations support snapshots and clones.
e4fefc2c 63RADOS and GlusterFS are distributed systems, replicating storage
aa039b0f
DM
64data to different nodes.
65
aa039b0f
DM
66
67.Available storage types
68[width="100%",cols="<d,1*m,4*d",options="header"]
69|===========================================================
70|Description |PVE type |Level |Shared|Snapshots|Stable
71|ZFS (local) |zfspool |file |no |yes |yes
db7f8770
DC
72|Directory |dir |file |no |no^1^ |yes
73|NFS |nfs |file |yes |no^1^ |yes
de14ebff 74|CIFS |cifs |file |yes |no^1^ |yes
db7f8770 75|GlusterFS |glusterfs |file |yes |no^1^ |yes
71996a81 76|CephFS |cephfs |file |yes |yes |yes
db7f8770 77|LVM |lvm |block |no^2^ |no |yes
9801e1c3 78|LVM-thin |lvmthin |block |no |yes |yes
aa039b0f
DM
79|iSCSI/kernel |iscsi |block |yes |no |yes
80|iSCSI/libiscsi |iscsidirect |block |yes |no |yes
81|Ceph/RBD |rbd |block |yes |yes |yes
aa039b0f
DM
82|ZFS over iSCSI |zfs |block |yes |yes |yes
83|=========================================================
84
db7f8770
DC
85^1^: On file based storages, snapshots are possible with the 'qcow2' format.
86
87^2^: It is possible to use LVM on top of an iSCSI storage. That way
8c1189b6 88you get a `shared` LVM storage.
aa039b0f 89
5eba0743
FG
90
91Thin Provisioning
2afe468c 92~~~~~~~~~~~~~~~~~
ebc15cbc 93
8c1189b6
FG
94A number of storages, and the Qemu image format `qcow2`, support 'thin
95provisioning'. With thin provisioning activated, only the blocks that
2afe468c 96the guest system actually use will be written to the storage.
ebc15cbc 97
2afe468c 98Say for instance you create a VM with a 32GB hard disk, and after
5eba0743 99installing the guest system OS, the root file system of the VM contains
2afe468c
DM
1003 GB of data. In that case only 3GB are written to the storage, even
101if the guest VM sees a 32GB hard drive. In this way thin provisioning
102allows you to create disk images which are larger than the currently
103available storage blocks. You can create large disk images for your
104VMs, and when the need arises, add more disks to your storage without
5eba0743 105resizing the VMs' file systems.
2afe468c 106
8c1189b6 107All storage types which have the ``Snapshots'' feature also support thin
2afe468c 108provisioning.
ebc15cbc 109
ba1d96fd 110CAUTION: If a storage runs full, all guests using volumes on that
38d1cf56 111storage receive IO errors. This can cause file system inconsistencies
ba1d96fd
DM
112and may corrupt your data. So it is advisable to avoid
113over-provisioning of your storage resources, or carefully observe
114free space to avoid such conditions.
ebc15cbc 115
5eba0743 116
aa039b0f
DM
117Storage Configuration
118---------------------
119
120All {pve} related storage configuration is stored within a single text
8c1189b6 121file at `/etc/pve/storage.cfg`. As this file is within `/etc/pve/`, it
aa039b0f
DM
122gets automatically distributed to all cluster nodes. So all nodes
123share the same storage configuration.
124
cc15d2c5
FE
125Sharing storage configuration makes perfect sense for shared storage,
126because the same ``shared'' storage is accessible from all nodes. But it is
aa039b0f
DM
127also useful for local storage types. In this case such local storage
128is available on all nodes, but it is physically different and can have
129totally different content.
130
5eba0743 131
aa039b0f
DM
132Storage Pools
133~~~~~~~~~~~~~
134
5eba0743
FG
135Each storage pool has a `<type>`, and is uniquely identified by its
136`<STORAGE_ID>`. A pool configuration looks like this:
aa039b0f
DM
137
138----
139<type>: <STORAGE_ID>
140 <property> <value>
141 <property> <value>
a550860d 142 <property>
aa039b0f
DM
143 ...
144----
145
aa039b0f 146The `<type>: <STORAGE_ID>` line starts the pool definition, which is then
a550860d
TL
147followed by a list of properties. Most properties require a value. Some have
148reasonable defaults, in which case you can omit the value.
aa039b0f 149
9c41b54d
DM
150To be more specific, take a look at the default storage configuration
151after installation. It contains one special local storage pool named
8c1189b6 152`local`, which refers to the directory `/var/lib/vz` and is always
9c41b54d
DM
153available. The {pve} installer creates additional storage entries
154depending on the storage type chosen at installation time.
155
8c1189b6 156.Default storage configuration (`/etc/pve/storage.cfg`)
9801e1c3
DM
157----
158dir: local
aa039b0f 159 path /var/lib/vz
9801e1c3
DM
160 content iso,vztmpl,backup
161
9c41b54d 162# default image store on LVM based installation
9801e1c3
DM
163lvmthin: local-lvm
164 thinpool data
165 vgname pve
166 content rootdir,images
9c41b54d
DM
167
168# default image store on ZFS based installation
169zfspool: local-zfs
170 pool rpool/data
171 sparse
172 content images,rootdir
9801e1c3 173----
aa039b0f 174
5eba0743 175
aa039b0f
DM
176Common Storage Properties
177~~~~~~~~~~~~~~~~~~~~~~~~~
178
871e1fd6 179A few storage properties are common among different storage types.
aa039b0f
DM
180
181nodes::
182
183List of cluster node names where this storage is
184usable/accessible. One can use this property to restrict storage
185access to a limited set of nodes.
186
187content::
188
189A storage can support several content types, for example virtual disk
190images, cdrom iso images, container templates or container root
871e1fd6 191directories. Not all storage types support all content types. One can set
cc15d2c5 192this property to select what this storage is used for.
aa039b0f
DM
193
194images:::
195
196KVM-Qemu VM images.
197
198rootdir:::
199
871e1fd6 200Allow to store container data.
aa039b0f
DM
201
202vztmpl:::
203
204Container templates.
205
206backup:::
207
8c1189b6 208Backup files (`vzdump`).
aa039b0f
DM
209
210iso:::
211
212ISO images
213
c2c8eb89
DC
214snippets:::
215
216Snippet files, for example guest hook scripts
217
aa039b0f
DM
218shared::
219
220Mark storage as shared.
221
222disable::
223
224You can use this flag to disable the storage completely.
225
226maxfiles::
227
5eba0743 228Maximum number of backup files per VM. Use `0` for unlimited.
aa039b0f
DM
229
230format::
231
232Default image format (`raw|qcow2|vmdk`)
233
234
235WARNING: It is not advisable to use the same storage pool on different
871e1fd6 236{pve} clusters. Some storage operation need exclusive access to the
aa039b0f 237storage, so proper locking is required. While this is implemented
871e1fd6 238within a cluster, it does not work between different clusters.
aa039b0f
DM
239
240
241Volumes
242-------
243
244We use a special notation to address storage data. When you allocate
871e1fd6 245data from a storage pool, it returns such a volume identifier. A volume
aa039b0f
DM
246is identified by the `<STORAGE_ID>`, followed by a storage type
247dependent volume name, separated by colon. A valid `<VOLUME_ID>` looks
248like:
249
250 local:230/example-image.raw
251
252 local:iso/debian-501-amd64-netinst.iso
253
254 local:vztmpl/debian-5.0-joomla_1.5.9-1_i386.tar.gz
255
256 iscsi-storage:0.0.2.scsi-14f504e46494c4500494b5042546d2d646744372d31616d61
257
5eba0743 258To get the file system path for a `<VOLUME_ID>` use:
aa039b0f
DM
259
260 pvesm path <VOLUME_ID>
261
5eba0743 262
aa039b0f
DM
263Volume Ownership
264~~~~~~~~~~~~~~~~
265
8c1189b6 266There exists an ownership relation for `image` type volumes. Each such
aa039b0f
DM
267volume is owned by a VM or Container. For example volume
268`local:230/example-image.raw` is owned by VM 230. Most storage
269backends encodes this ownership information into the volume name.
270
871e1fd6 271When you remove a VM or Container, the system also removes all
aa039b0f
DM
272associated volumes which are owned by that VM or Container.
273
274
275Using the Command Line Interface
276--------------------------------
277
871e1fd6
FG
278It is recommended to familiarize yourself with the concept behind storage
279pools and volume identifiers, but in real life, you are not forced to do any
aa039b0f
DM
280of those low level operations on the command line. Normally,
281allocation and removal of volumes is done by the VM and Container
282management tools.
283
8c1189b6
FG
284Nevertheless, there is a command line tool called `pvesm` (``{pve}
285Storage Manager''), which is able to perform common storage management
aa039b0f
DM
286tasks.
287
288
289Examples
290~~~~~~~~
291
292Add storage pools
293
294 pvesm add <TYPE> <STORAGE_ID> <OPTIONS>
295 pvesm add dir <STORAGE_ID> --path <PATH>
296 pvesm add nfs <STORAGE_ID> --path <PATH> --server <SERVER> --export <EXPORT>
297 pvesm add lvm <STORAGE_ID> --vgname <VGNAME>
298 pvesm add iscsi <STORAGE_ID> --portal <HOST[:PORT]> --target <TARGET>
299
300Disable storage pools
301
302 pvesm set <STORAGE_ID> --disable 1
303
304Enable storage pools
305
306 pvesm set <STORAGE_ID> --disable 0
307
308Change/set storage options
309
310 pvesm set <STORAGE_ID> <OPTIONS>
311 pvesm set <STORAGE_ID> --shared 1
312 pvesm set local --format qcow2
313 pvesm set <STORAGE_ID> --content iso
314
315Remove storage pools. This does not delete any data, and does not
316disconnect or unmount anything. It just removes the storage
317configuration.
318
319 pvesm remove <STORAGE_ID>
320
321Allocate volumes
322
323 pvesm alloc <STORAGE_ID> <VMID> <name> <size> [--format <raw|qcow2>]
324
325Allocate a 4G volume in local storage. The name is auto-generated if
326you pass an empty string as `<name>`
327
328 pvesm alloc local <VMID> '' 4G
329
5eba0743 330Free volumes
aa039b0f
DM
331
332 pvesm free <VOLUME_ID>
333
334WARNING: This really destroys all volume data.
335
336List storage status
337
338 pvesm status
339
340List storage contents
341
342 pvesm list <STORAGE_ID> [--vmid <VMID>]
343
344List volumes allocated by VMID
345
346 pvesm list <STORAGE_ID> --vmid <VMID>
347
348List iso images
349
350 pvesm list <STORAGE_ID> --iso
351
352List container templates
353
354 pvesm list <STORAGE_ID> --vztmpl
355
5eba0743 356Show file system path for a volume
aa039b0f
DM
357
358 pvesm path <VOLUME_ID>
359
deb4673f
DM
360ifdef::wiki[]
361
362See Also
363--------
364
f532afb7 365* link:/wiki/Storage:_Directory[Storage: Directory]
deb4673f 366
f532afb7 367* link:/wiki/Storage:_GlusterFS[Storage: GlusterFS]
deb4673f 368
f532afb7 369* link:/wiki/Storage:_User_Mode_iSCSI[Storage: User Mode iSCSI]
deb4673f 370
f532afb7 371* link:/wiki/Storage:_iSCSI[Storage: iSCSI]
deb4673f 372
f532afb7 373* link:/wiki/Storage:_LVM[Storage: LVM]
deb4673f 374
f532afb7 375* link:/wiki/Storage:_LVM_Thin[Storage: LVM Thin]
deb4673f 376
f532afb7 377* link:/wiki/Storage:_NFS[Storage: NFS]
deb4673f 378
de14ebff
WL
379* link:/wiki/Storage:_CIFS[Storage: CIFS]
380
f532afb7 381* link:/wiki/Storage:_RBD[Storage: RBD]
deb4673f 382
ef488ba5 383* link:/wiki/Storage:_CephFS[Storage: CephFS]
a82d3cc3 384
f532afb7 385* link:/wiki/Storage:_ZFS[Storage: ZFS]
deb4673f 386
032e755c 387* link:/wiki/Storage:_ZFS_over_iSCSI[Storage: ZFS over iSCSI]
deb4673f
DM
388
389endif::wiki[]
390
251666be
DM
391ifndef::wiki[]
392
aa039b0f
DM
393// backend documentation
394
395include::pve-storage-dir.adoc[]
396
397include::pve-storage-nfs.adoc[]
398
de14ebff
WL
399include::pve-storage-cifs.adoc[]
400
aa039b0f
DM
401include::pve-storage-glusterfs.adoc[]
402
403include::pve-storage-zfspool.adoc[]
404
405include::pve-storage-lvm.adoc[]
406
9801e1c3
DM
407include::pve-storage-lvmthin.adoc[]
408
aa039b0f
DM
409include::pve-storage-iscsi.adoc[]
410
411include::pve-storage-iscsidirect.adoc[]
412
413include::pve-storage-rbd.adoc[]
414
669bce8b
AA
415include::pve-storage-cephfs.adoc[]
416
aa039b0f 417
251666be 418
aa039b0f
DM
419ifdef::manvolnum[]
420include::pve-copyright.adoc[]
421endif::manvolnum[]
422
251666be
DM
423endif::wiki[]
424