]> git.proxmox.com Git - pve-docs.git/blame - pvesm.adoc
further improve ha-manager intro
[pve-docs.git] / pvesm.adoc
CommitLineData
aa039b0f
DM
1[[chapter-storage]]
2ifdef::manvolnum[]
3PVE({manvolnum})
4================
38fd0958 5include::attributes.txt[]
aa039b0f
DM
6
7NAME
8----
9
10pvesm - Proxmox VE Storage Manager
11
12
13SYNOPSYS
14--------
15
16include::pvesm.1-synopsis.adoc[]
17
18DESCRIPTION
19-----------
20endif::manvolnum[]
21
22ifndef::manvolnum[]
23{pve} Storage
24=============
38fd0958 25include::attributes.txt[]
aa039b0f
DM
26endif::manvolnum[]
27
28The {pve} storage model is very flexible. Virtual machine images
29can either be stored on one or several local storages, or on shared
30storage like NFS or iSCSI (NAS, SAN). There are no limits, and you may
31configure as many storage pools as you like. You can use all
32storage technologies available for Debian Linux.
33
34One major benefit of storing VMs on shared storage is the ability to
35live-migrate running machines without any downtime, as all nodes in
36the cluster have direct access to VM disk images. There is no need to
37copy VM image data, so live migration is very fast in that case.
38
39The storage library (package 'libpve-storage-perl') uses a flexible
40plugin system to provide a common interface to all storage types. This
41can be easily adopted to include further storage types in future.
42
43
44Storage Types
45-------------
46
47There are basically two different classes of storage types:
48
49Block level storage::
50
51Allows to store large 'raw' images. It is usually not possible to store
52other files (ISO, backups, ..) on such storage types. Most modern
53block level storage implementations support snapshots and clones.
54RADOS, Sheepdog and DRBD are distributed systems, replicating storage
55data to different nodes.
56
57File level storage::
58
59They allow access to a full featured (POSIX) file system. They are
60more flexible, and allows you to store any content type. ZFS is
61probably the most advanced system, and it has full support for
62snapshots and clones.
63
64
65.Available storage types
66[width="100%",cols="<d,1*m,4*d",options="header"]
67|===========================================================
68|Description |PVE type |Level |Shared|Snapshots|Stable
69|ZFS (local) |zfspool |file |no |yes |yes
70|Directory |dir |file |no |no |yes
71|NFS |nfs |file |yes |no |yes
72|GlusterFS |glusterfs |file |yes |no |yes
73|LVM |lvm |block |no |no |yes
74|LVM-thin |lvmthin |block |no |yes |beta
75|iSCSI/kernel |iscsi |block |yes |no |yes
76|iSCSI/libiscsi |iscsidirect |block |yes |no |yes
77|Ceph/RBD |rbd |block |yes |yes |yes
78|Sheepdog |sheepdog |block |yes |yes |beta
79|DRBD9 |drbd |block |yes |yes |beta
80|ZFS over iSCSI |zfs |block |yes |yes |yes
81|=========================================================
82
83TIP: It is possible to use LVM on top of an iSCSI storage. That way
84you get a 'shared' LVM storage.
85
86Storage Configuration
87---------------------
88
89All {pve} related storage configuration is stored within a single text
90file at '/etc/pve/storage.cfg'. As this file is within '/etc/pve/', it
91gets automatically distributed to all cluster nodes. So all nodes
92share the same storage configuration.
93
94Sharing storage configuration make perfect sense for shared storage,
95because the same 'shared' storage is accessible from all nodes. But is
96also useful for local storage types. In this case such local storage
97is available on all nodes, but it is physically different and can have
98totally different content.
99
100Storage Pools
101~~~~~~~~~~~~~
102
103Each storage pool has a `<type>`, and is uniquely identified by its `<STORAGE_ID>`. A pool configuration looks like this:
104
105----
106<type>: <STORAGE_ID>
107 <property> <value>
108 <property> <value>
109 ...
110----
111
112NOTE: There is one special local storage pool named `local`. It refers to
113directory '/var/lib/vz' and is automatically generated at installation
114time.
115
116The `<type>: <STORAGE_ID>` line starts the pool definition, which is then
117followed by a list of properties. Most properties have values, but some of them comes
118with reasonable default. In that case you can omit the value.
119
120.Default storage configuration ('/etc/pve/storage.cfg')
121====
122 dir: local
123 path /var/lib/vz
124 content backup,iso,vztmpl,images,rootdir
125 maxfiles 3
126====
127
128Common Storage Properties
129~~~~~~~~~~~~~~~~~~~~~~~~~
130
131A few storage properties are common among differenty storage types.
132
133nodes::
134
135List of cluster node names where this storage is
136usable/accessible. One can use this property to restrict storage
137access to a limited set of nodes.
138
139content::
140
141A storage can support several content types, for example virtual disk
142images, cdrom iso images, container templates or container root
143directories. Not all storage types supports all content types. One can set
144this property to select for what this storage is used for.
145
146images:::
147
148KVM-Qemu VM images.
149
150rootdir:::
151
152Allow to store Container data.
153
154vztmpl:::
155
156Container templates.
157
158backup:::
159
160Backup files ('vzdump').
161
162iso:::
163
164ISO images
165
166shared::
167
168Mark storage as shared.
169
170disable::
171
172You can use this flag to disable the storage completely.
173
174maxfiles::
175
176Maximal number of backup files per VM. Use `0` for unlimted.
177
178format::
179
180Default image format (`raw|qcow2|vmdk`)
181
182
183WARNING: It is not advisable to use the same storage pool on different
184{pve} clusters. Some storage operation needs exclusive access to the
185storage, so proper locking is required. While this is implemented
186within an cluster, it does not work between different clusters.
187
188
189Volumes
190-------
191
192We use a special notation to address storage data. When you allocate
193data from a storage pool, it returns such volume identifier. A volume
194is identified by the `<STORAGE_ID>`, followed by a storage type
195dependent volume name, separated by colon. A valid `<VOLUME_ID>` looks
196like:
197
198 local:230/example-image.raw
199
200 local:iso/debian-501-amd64-netinst.iso
201
202 local:vztmpl/debian-5.0-joomla_1.5.9-1_i386.tar.gz
203
204 iscsi-storage:0.0.2.scsi-14f504e46494c4500494b5042546d2d646744372d31616d61
205
206To get the filesystem path for a `<VOLUME_ID>` use:
207
208 pvesm path <VOLUME_ID>
209
210Volume Ownership
211~~~~~~~~~~~~~~~~
212
213There exists an ownership relation for 'image' type volumes. Each such
214volume is owned by a VM or Container. For example volume
215`local:230/example-image.raw` is owned by VM 230. Most storage
216backends encodes this ownership information into the volume name.
217
218When you remove a VM or Container, the system also remove all
219associated volumes which are owned by that VM or Container.
220
221
222Using the Command Line Interface
223--------------------------------
224
225I think it is required to understand the concept behind storage pools
226and volume identifier, but in real life, you are not forced to do any
227of those low level operations on the command line. Normally,
228allocation and removal of volumes is done by the VM and Container
229management tools.
230
231Nevertheless, there is a command line tool called 'pvesm' ({pve}
232storage manager), which is able to perform common storage management
233tasks.
234
235
236Examples
237~~~~~~~~
238
239Add storage pools
240
241 pvesm add <TYPE> <STORAGE_ID> <OPTIONS>
242 pvesm add dir <STORAGE_ID> --path <PATH>
243 pvesm add nfs <STORAGE_ID> --path <PATH> --server <SERVER> --export <EXPORT>
244 pvesm add lvm <STORAGE_ID> --vgname <VGNAME>
245 pvesm add iscsi <STORAGE_ID> --portal <HOST[:PORT]> --target <TARGET>
246
247Disable storage pools
248
249 pvesm set <STORAGE_ID> --disable 1
250
251Enable storage pools
252
253 pvesm set <STORAGE_ID> --disable 0
254
255Change/set storage options
256
257 pvesm set <STORAGE_ID> <OPTIONS>
258 pvesm set <STORAGE_ID> --shared 1
259 pvesm set local --format qcow2
260 pvesm set <STORAGE_ID> --content iso
261
262Remove storage pools. This does not delete any data, and does not
263disconnect or unmount anything. It just removes the storage
264configuration.
265
266 pvesm remove <STORAGE_ID>
267
268Allocate volumes
269
270 pvesm alloc <STORAGE_ID> <VMID> <name> <size> [--format <raw|qcow2>]
271
272Allocate a 4G volume in local storage. The name is auto-generated if
273you pass an empty string as `<name>`
274
275 pvesm alloc local <VMID> '' 4G
276
277Free volumes
278
279 pvesm free <VOLUME_ID>
280
281WARNING: This really destroys all volume data.
282
283List storage status
284
285 pvesm status
286
287List storage contents
288
289 pvesm list <STORAGE_ID> [--vmid <VMID>]
290
291List volumes allocated by VMID
292
293 pvesm list <STORAGE_ID> --vmid <VMID>
294
295List iso images
296
297 pvesm list <STORAGE_ID> --iso
298
299List container templates
300
301 pvesm list <STORAGE_ID> --vztmpl
302
303Show filesystem path for a volume
304
305 pvesm path <VOLUME_ID>
306
307// backend documentation
308
309include::pve-storage-dir.adoc[]
310
311include::pve-storage-nfs.adoc[]
312
313include::pve-storage-glusterfs.adoc[]
314
315include::pve-storage-zfspool.adoc[]
316
317include::pve-storage-lvm.adoc[]
318
319include::pve-storage-iscsi.adoc[]
320
321include::pve-storage-iscsidirect.adoc[]
322
323include::pve-storage-rbd.adoc[]
324
325
326ifdef::manvolnum[]
327include::pve-copyright.adoc[]
328endif::manvolnum[]
329