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