]> git.proxmox.com Git - pve-docs.git/blame - pveceph.adoc
ceph: add ceph installation wizard docs
[pve-docs.git] / pveceph.adoc
CommitLineData
80c0adcb 1[[chapter_pveceph]]
0840a663 2ifdef::manvolnum[]
b2f242ab
DM
3pveceph(1)
4==========
404a158e 5:pve-toplevel:
0840a663
DM
6
7NAME
8----
9
21394e70 10pveceph - Manage Ceph Services on Proxmox VE Nodes
0840a663 11
49a5e11c 12SYNOPSIS
0840a663
DM
13--------
14
15include::pveceph.1-synopsis.adoc[]
16
17DESCRIPTION
18-----------
19endif::manvolnum[]
0840a663 20ifndef::manvolnum[]
fe93f133
DM
21Manage Ceph Services on Proxmox VE Nodes
22========================================
49d3ad91 23:pve-toplevel:
0840a663
DM
24endif::manvolnum[]
25
1ff5e4e8 26[thumbnail="screenshot/gui-ceph-status.png"]
8997dd6e 27
a474ca1f
AA
28{pve} unifies your compute and storage systems, i.e. you can use the same
29physical nodes within a cluster for both computing (processing VMs and
30containers) and replicated storage. The traditional silos of compute and
31storage resources can be wrapped up into a single hyper-converged appliance.
32Separate storage networks (SANs) and connections via network attached storages
33(NAS) disappear. With the integration of Ceph, an open source software-defined
34storage platform, {pve} has the ability to run and manage Ceph storage directly
35on the hypervisor nodes.
c994e4e5
DM
36
37Ceph is a distributed object store and file system designed to provide
1d54c3b4
AA
38excellent performance, reliability and scalability.
39
04ba9b24
TL
40.Some advantages of Ceph on {pve} are:
41- Easy setup and management with CLI and GUI support
a474ca1f
AA
42- Thin provisioning
43- Snapshots support
44- Self healing
a474ca1f
AA
45- Scalable to the exabyte level
46- Setup pools with different performance and redundancy characteristics
47- Data is replicated, making it fault tolerant
48- Runs on economical commodity hardware
49- No need for hardware RAID controllers
a474ca1f
AA
50- Open source
51
1d54c3b4
AA
52For small to mid sized deployments, it is possible to install a Ceph server for
53RADOS Block Devices (RBD) directly on your {pve} cluster nodes, see
c994e4e5
DM
54xref:ceph_rados_block_devices[Ceph RADOS Block Devices (RBD)]. Recent
55hardware has plenty of CPU power and RAM, so running storage services
56and VMs on the same node is possible.
21394e70
DM
57
58To simplify management, we provide 'pveceph' - a tool to install and
59manage {ceph} services on {pve} nodes.
60
127ca409 61.Ceph consists of a couple of Daemons footnote:[Ceph intro http://docs.ceph.com/docs/luminous/start/intro/], for use as a RBD storage:
1d54c3b4
AA
62- Ceph Monitor (ceph-mon)
63- Ceph Manager (ceph-mgr)
64- Ceph OSD (ceph-osd; Object Storage Daemon)
65
477fbcfb
AA
66TIP: We highly recommend to get familiar with Ceph's architecture
67footnote:[Ceph architecture http://docs.ceph.com/docs/luminous/architecture/]
68and vocabulary
69footnote:[Ceph glossary http://docs.ceph.com/docs/luminous/glossary].
1d54c3b4 70
21394e70
DM
71
72Precondition
73------------
74
76f6eca4
AA
75To build a hyper-converged Proxmox + Ceph Cluster there should be at least
76three (preferably) identical servers for the setup.
21394e70
DM
77
78Check also the recommendations from
1d54c3b4 79http://docs.ceph.com/docs/luminous/start/hardware-recommendations/[Ceph's website].
21394e70 80
76f6eca4 81.CPU
2f19a6b0
TL
82Higher CPU core frequency reduce latency and should be preferred. As a simple
83rule of thumb, you should assign a CPU core (or thread) to each Ceph service to
84provide enough resources for stable and durable Ceph performance.
76f6eca4
AA
85
86.Memory
87Especially in a hyper-converged setup, the memory consumption needs to be
2f19a6b0
TL
88carefully monitored. In addition to the intended workload from virtual machines
89and container, Ceph needs enough memory available to provide good and stable
90performance. As a rule of thumb, for roughly 1 TiB of data, 1 GiB of memory
91will be used by an OSD. OSD caching will use additional memory.
76f6eca4
AA
92
93.Network
94We recommend a network bandwidth of at least 10 GbE or more, which is used
95exclusively for Ceph. A meshed network setup
96footnote:[Full Mesh Network for Ceph {webwiki-url}Full_Mesh_Network_for_Ceph_Server]
97is also an option if there are no 10 GbE switches available.
98
2f19a6b0
TL
99The volume of traffic, especially during recovery, will interfere with other
100services on the same network and may even break the {pve} cluster stack.
76f6eca4
AA
101
102Further, estimate your bandwidth needs. While one HDD might not saturate a 1 Gb
2f19a6b0
TL
103link, multiple HDD OSDs per node can, and modern NVMe SSDs will even saturate
10410 Gbps of bandwidth quickly. Deploying a network capable of even more bandwith
105will ensure that it isn't your bottleneck and won't be anytime soon, 25, 40 or
106even 100 GBps are possible.
76f6eca4
AA
107
108.Disks
109When planning the size of your Ceph cluster, it is important to take the
110recovery time into consideration. Especially with small clusters, the recovery
111might take long. It is recommended that you use SSDs instead of HDDs in small
112setups to reduce recovery time, minimizing the likelihood of a subsequent
113failure event during recovery.
114
2f19a6b0 115In general SSDs will provide more IOPs than spinning disks. This fact and the
76f6eca4 116higher cost may make a xref:pve_ceph_device_classes[class based] separation of
2f19a6b0 117pools appealing. Another possibility to speedup OSDs is to use a faster disk
76f6eca4
AA
118as journal or DB/WAL device, see xref:pve_ceph_osds[creating Ceph OSDs]. If a
119faster disk is used for multiple OSDs, a proper balance between OSD and WAL /
120DB (or journal) disk must be selected, otherwise the faster disk becomes the
121bottleneck for all linked OSDs.
122
123Aside from the disk type, Ceph best performs with an even sized and distributed
2f19a6b0
TL
124amount of disks per node. For example, 4 x 500 GB disks with in each node is
125better than a mixed setup with a single 1 TB and three 250 GB disk.
126
127One also need to balance OSD count and single OSD capacity. More capacity
128allows to increase storage density, but it also means that a single OSD
129failure forces ceph to recover more data at once.
76f6eca4 130
a474ca1f 131.Avoid RAID
86be506d 132As Ceph handles data object redundancy and multiple parallel writes to disks
c78756be 133(OSDs) on its own, using a RAID controller normally doesn’t improve
86be506d
TL
134performance or availability. On the contrary, Ceph is designed to handle whole
135disks on it's own, without any abstraction in between. RAID controller are not
136designed for the Ceph use case and may complicate things and sometimes even
137reduce performance, as their write and caching algorithms may interfere with
138the ones from Ceph.
a474ca1f
AA
139
140WARNING: Avoid RAID controller, use host bus adapter (HBA) instead.
141
76f6eca4 142NOTE: Above recommendations should be seen as a rough guidance for choosing
2f19a6b0
TL
143hardware. Therefore, it is still essential to adapt it to your specific needs,
144test your setup and monitor health and performance continuously.
76f6eca4 145
2394c306
TM
146[[pve_ceph_install_wizard]]
147Initial Ceph installation & configuration
148-----------------------------------------
149
150[thumbnail="screenshot/gui-node-ceph-install.png"]
151
152With {pve} you have the benefit of an easy to use installation wizard
153for Ceph. Click on one of your cluster nodes and navigate to the Ceph
154section in the menu tree. If Ceph is not installed already you will be
155offered to do this now.
156
157The wizard is divided into different sections, where each needs to be
158done successfully in order to use Ceph. After starting the installation
159the wizard will load and install all required packages.
160
161After finishing the first step, you will need to create a configuration.
162This step is only needed on the first run of the wizard, because the
163configuration is cluster wide and therefore distributed automatically
164to all remaining cluster members - see xref:chapter_pmxcfs[cluster file system (pmxcfs)] section.
165
166The configuration step includes the following settings:
167
168* *Public Network:* You should setup a dedicated network for Ceph, this
169setting is required. Separating your Ceph traffic is highly recommended,
170because it could lead to troubles with other latency dependent services
171e.g. cluster communication.
172
173[thumbnail="screenshot/gui-node-ceph-install-wizard-step2.png"]
174
175* *Cluster Network:* As an optional step you can go even further and
176separate the xref:pve_ceph_osds[OSD] replication & heartbeat traffic
177as well. This will relieve the public network and could lead to
178significant performance improvements especially in big clusters.
179
180You have two more options which are considered advanced and therefore
181should only changed if you are an expert.
182
183* *Number of replicas*: Defines the how often a object is replicated
184* *Minimum replicas*: Defines the minimum number of required replicas
185for I/O.
186
187Additionally you need to choose a monitor node, this is required.
188
189That's it, you should see a success page as the last step with further
190instructions on how to go on. You are now prepared to start using Ceph,
191even though you will need to create additional xref:pve_ceph_monitors[monitors],
192create some xref:pve_ceph_osds[OSDs] and at least one xref:pve_ceph_pools[pool].
193
194The rest of this chapter will guide you on how to get the most out of
195your {pve} based Ceph setup, this will include aforementioned and
196more like xref:pveceph_fs[CephFS] which is a very handy addition to your
197new Ceph cluster.
21394e70 198
58f95dd7 199[[pve_ceph_install]]
21394e70
DM
200Installation of Ceph Packages
201-----------------------------
2394c306
TM
202Use {pve} Ceph installation wizard (recommended) or run the following
203command on each node:
21394e70
DM
204
205[source,bash]
206----
19920184 207pveceph install
21394e70
DM
208----
209
210This sets up an `apt` package repository in
211`/etc/apt/sources.list.d/ceph.list` and installs the required software.
212
213
214Creating initial Ceph configuration
215-----------------------------------
216
1ff5e4e8 217[thumbnail="screenshot/gui-ceph-config.png"]
8997dd6e 218
2394c306
TM
219Use the {pve} Ceph installation wizard (recommended) or run the
220following command on one node:
21394e70
DM
221
222[source,bash]
223----
224pveceph init --network 10.10.10.0/24
225----
226
2394c306
TM
227This creates an initial configuration at `/etc/pve/ceph.conf` with a
228dedicated network for ceph. That file is automatically distributed to
229all {pve} nodes by using xref:chapter_pmxcfs[pmxcfs]. The command also
230creates a symbolic link from `/etc/ceph/ceph.conf` pointing to that file.
231So you can simply run Ceph commands without the need to specify a
232configuration file.
21394e70
DM
233
234
d9a27ee1 235[[pve_ceph_monitors]]
21394e70
DM
236Creating Ceph Monitors
237----------------------
238
1ff5e4e8 239[thumbnail="screenshot/gui-ceph-monitor.png"]
8997dd6e 240
1d54c3b4
AA
241The Ceph Monitor (MON)
242footnote:[Ceph Monitor http://docs.ceph.com/docs/luminous/start/intro/]
a474ca1f 243maintains a master copy of the cluster map. For high availability you need to
2394c306
TM
244have at least 3 monitors. One monitor will already be installed if you
245used the installation wizard. You wont need more than 3 monitors as long
246as your cluster is small to midsize, only really large clusters will
247need more than that.
1d54c3b4
AA
248
249On each node where you want to place a monitor (three monitors are recommended),
250create it by using the 'Ceph -> Monitor' tab in the GUI or run.
21394e70
DM
251
252
253[source,bash]
254----
255pveceph createmon
256----
257
1d54c3b4
AA
258This will also install the needed Ceph Manager ('ceph-mgr') by default. If you
259do not want to install a manager, specify the '-exclude-manager' option.
260
261
262[[pve_ceph_manager]]
263Creating Ceph Manager
264----------------------
265
a474ca1f 266The Manager daemon runs alongside the monitors, providing an interface for
1d54c3b4
AA
267monitoring the cluster. Since the Ceph luminous release the
268ceph-mgr footnote:[Ceph Manager http://docs.ceph.com/docs/luminous/mgr/] daemon
269is required. During monitor installation the ceph manager will be installed as
270well.
271
272NOTE: It is recommended to install the Ceph Manager on the monitor nodes. For
273high availability install more then one manager.
274
275[source,bash]
276----
277pveceph createmgr
278----
279
21394e70 280
d9a27ee1 281[[pve_ceph_osds]]
21394e70
DM
282Creating Ceph OSDs
283------------------
284
1ff5e4e8 285[thumbnail="screenshot/gui-ceph-osd-status.png"]
8997dd6e 286
21394e70
DM
287via GUI or via CLI as follows:
288
289[source,bash]
290----
291pveceph createosd /dev/sd[X]
292----
293
1d54c3b4
AA
294TIP: We recommend a Ceph cluster size, starting with 12 OSDs, distributed evenly
295among your, at least three nodes (4 OSDs on each node).
296
a474ca1f
AA
297If the disk was used before (eg. ZFS/RAID/OSD), to remove partition table, boot
298sector and any OSD leftover the following commands should be sufficient.
299
300[source,bash]
301----
302dd if=/dev/zero of=/dev/sd[X] bs=1M count=200
303ceph-disk zap /dev/sd[X]
304----
305
306WARNING: The above commands will destroy data on the disk!
1d54c3b4
AA
307
308Ceph Bluestore
309~~~~~~~~~~~~~~
21394e70 310
1d54c3b4
AA
311Starting with the Ceph Kraken release, a new Ceph OSD storage type was
312introduced, the so called Bluestore
a474ca1f
AA
313footnote:[Ceph Bluestore http://ceph.com/community/new-luminous-bluestore/].
314This is the default when creating OSDs in Ceph luminous.
21394e70
DM
315
316[source,bash]
317----
1d54c3b4
AA
318pveceph createosd /dev/sd[X]
319----
320
ee4a0e96 321NOTE: In order to select a disk in the GUI, to be more fail-safe, the disk needs
a474ca1f
AA
322to have a GPT footnoteref:[GPT, GPT partition table
323https://en.wikipedia.org/wiki/GUID_Partition_Table] partition table. You can
324create this with `gdisk /dev/sd(x)`. If there is no GPT, you cannot select the
325disk as DB/WAL.
1d54c3b4
AA
326
327If you want to use a separate DB/WAL device for your OSDs, you can specify it
a474ca1f
AA
328through the '-journal_dev' option. The WAL is placed with the DB, if not
329specified separately.
1d54c3b4
AA
330
331[source,bash]
332----
a474ca1f 333pveceph createosd /dev/sd[X] -journal_dev /dev/sd[Y]
1d54c3b4
AA
334----
335
336NOTE: The DB stores BlueStore’s internal metadata and the WAL is BlueStore’s
ee4a0e96 337internal journal or write-ahead log. It is recommended to use a fast SSD or
1d54c3b4
AA
338NVRAM for better performance.
339
340
341Ceph Filestore
342~~~~~~~~~~~~~
343Till Ceph luminous, Filestore was used as storage type for Ceph OSDs. It can
344still be used and might give better performance in small setups, when backed by
ee4a0e96 345an NVMe SSD or similar.
1d54c3b4
AA
346
347[source,bash]
348----
349pveceph createosd /dev/sd[X] -bluestore 0
350----
351
352NOTE: In order to select a disk in the GUI, the disk needs to have a
353GPT footnoteref:[GPT] partition table. You can
354create this with `gdisk /dev/sd(x)`. If there is no GPT, you cannot select the
355disk as journal. Currently the journal size is fixed to 5 GB.
356
357If you want to use a dedicated SSD journal disk:
358
359[source,bash]
360----
e677b344 361pveceph createosd /dev/sd[X] -journal_dev /dev/sd[Y] -bluestore 0
21394e70
DM
362----
363
364Example: Use /dev/sdf as data disk (4TB) and /dev/sdb is the dedicated SSD
365journal disk.
366
367[source,bash]
368----
e677b344 369pveceph createosd /dev/sdf -journal_dev /dev/sdb -bluestore 0
21394e70
DM
370----
371
372This partitions the disk (data and journal partition), creates
373filesystems and starts the OSD, afterwards it is running and fully
1d54c3b4 374functional.
21394e70 375
1d54c3b4
AA
376NOTE: This command refuses to initialize disk when it detects existing data. So
377if you want to overwrite a disk you should remove existing data first. You can
378do that using: 'ceph-disk zap /dev/sd[X]'
21394e70
DM
379
380You can create OSDs containing both journal and data partitions or you
381can place the journal on a dedicated SSD. Using a SSD journal disk is
1d54c3b4 382highly recommended to achieve good performance.
21394e70
DM
383
384
07fef357 385[[pve_ceph_pools]]
1d54c3b4
AA
386Creating Ceph Pools
387-------------------
21394e70 388
1ff5e4e8 389[thumbnail="screenshot/gui-ceph-pools.png"]
8997dd6e 390
1d54c3b4 391A pool is a logical group for storing objects. It holds **P**lacement
90682f35 392**G**roups (`PG`, `pg_num`), a collection of objects.
1d54c3b4 393
90682f35
TL
394When no options are given, we set a default of **128 PGs**, a **size of 3
395replicas** and a **min_size of 2 replicas** for serving objects in a degraded
396state.
1d54c3b4 397
5a54ef44 398NOTE: The default number of PGs works for 2-5 disks. Ceph throws a
90682f35 399'HEALTH_WARNING' if you have too few or too many PGs in your cluster.
1d54c3b4
AA
400
401It is advised to calculate the PG number depending on your setup, you can find
a474ca1f
AA
402the formula and the PG calculator footnote:[PG calculator
403http://ceph.com/pgcalc/] online. While PGs can be increased later on, they can
404never be decreased.
1d54c3b4
AA
405
406
407You can create pools through command line or on the GUI on each PVE host under
408**Ceph -> Pools**.
409
410[source,bash]
411----
412pveceph createpool <name>
413----
414
415If you would like to automatically get also a storage definition for your pool,
416active the checkbox "Add storages" on the GUI or use the command line option
417'--add_storages' on pool creation.
21394e70 418
1d54c3b4
AA
419Further information on Ceph pool handling can be found in the Ceph pool
420operation footnote:[Ceph pool operation
421http://docs.ceph.com/docs/luminous/rados/operations/pools/]
422manual.
21394e70 423
76f6eca4 424[[pve_ceph_device_classes]]
9fad507d
AA
425Ceph CRUSH & device classes
426---------------------------
427The foundation of Ceph is its algorithm, **C**ontrolled **R**eplication
428**U**nder **S**calable **H**ashing
429(CRUSH footnote:[CRUSH https://ceph.com/wp-content/uploads/2016/08/weil-crush-sc06.pdf]).
430
431CRUSH calculates where to store to and retrieve data from, this has the
432advantage that no central index service is needed. CRUSH works with a map of
433OSDs, buckets (device locations) and rulesets (data replication) for pools.
434
435NOTE: Further information can be found in the Ceph documentation, under the
436section CRUSH map footnote:[CRUSH map http://docs.ceph.com/docs/luminous/rados/operations/crush-map/].
437
438This map can be altered to reflect different replication hierarchies. The object
439replicas can be separated (eg. failure domains), while maintaining the desired
440distribution.
441
442A common use case is to use different classes of disks for different Ceph pools.
443For this reason, Ceph introduced the device classes with luminous, to
444accommodate the need for easy ruleset generation.
445
446The device classes can be seen in the 'ceph osd tree' output. These classes
447represent their own root bucket, which can be seen with the below command.
448
449[source, bash]
450----
451ceph osd crush tree --show-shadow
452----
453
454Example output form the above command:
455
456[source, bash]
457----
458ID CLASS WEIGHT TYPE NAME
459-16 nvme 2.18307 root default~nvme
460-13 nvme 0.72769 host sumi1~nvme
461 12 nvme 0.72769 osd.12
462-14 nvme 0.72769 host sumi2~nvme
463 13 nvme 0.72769 osd.13
464-15 nvme 0.72769 host sumi3~nvme
465 14 nvme 0.72769 osd.14
466 -1 7.70544 root default
467 -3 2.56848 host sumi1
468 12 nvme 0.72769 osd.12
469 -5 2.56848 host sumi2
470 13 nvme 0.72769 osd.13
471 -7 2.56848 host sumi3
472 14 nvme 0.72769 osd.14
473----
474
475To let a pool distribute its objects only on a specific device class, you need
476to create a ruleset with the specific class first.
477
478[source, bash]
479----
480ceph osd crush rule create-replicated <rule-name> <root> <failure-domain> <class>
481----
482
483[frame="none",grid="none", align="left", cols="30%,70%"]
484|===
485|<rule-name>|name of the rule, to connect with a pool (seen in GUI & CLI)
486|<root>|which crush root it should belong to (default ceph root "default")
487|<failure-domain>|at which failure-domain the objects should be distributed (usually host)
488|<class>|what type of OSD backing store to use (eg. nvme, ssd, hdd)
489|===
490
491Once the rule is in the CRUSH map, you can tell a pool to use the ruleset.
492
493[source, bash]
494----
495ceph osd pool set <pool-name> crush_rule <rule-name>
496----
497
498TIP: If the pool already contains objects, all of these have to be moved
499accordingly. Depending on your setup this may introduce a big performance hit on
500your cluster. As an alternative, you can create a new pool and move disks
501separately.
502
503
21394e70
DM
504Ceph Client
505-----------
506
1ff5e4e8 507[thumbnail="screenshot/gui-ceph-log.png"]
8997dd6e 508
21394e70
DM
509You can then configure {pve} to use such pools to store VM or
510Container images. Simply use the GUI too add a new `RBD` storage (see
511section xref:ceph_rados_block_devices[Ceph RADOS Block Devices (RBD)]).
512
1d54c3b4
AA
513You also need to copy the keyring to a predefined location for a external Ceph
514cluster. If Ceph is installed on the Proxmox nodes itself, then this will be
515done automatically.
21394e70
DM
516
517NOTE: The file name needs to be `<storage_id> + `.keyring` - `<storage_id>` is
518the expression after 'rbd:' in `/etc/pve/storage.cfg` which is
519`my-ceph-storage` in the following example:
520
521[source,bash]
522----
523mkdir /etc/pve/priv/ceph
524cp /etc/ceph/ceph.client.admin.keyring /etc/pve/priv/ceph/my-ceph-storage.keyring
525----
0840a663 526
58f95dd7
TL
527[[pveceph_fs]]
528CephFS
529------
530
531Ceph provides also a filesystem running on top of the same object storage as
532RADOS block devices do. A **M**eta**d**ata **S**erver (`MDS`) is used to map
533the RADOS backed objects to files and directories, allowing to provide a
534POSIX-compliant replicated filesystem. This allows one to have a clustered
535highly available shared filesystem in an easy way if ceph is already used. Its
536Metadata Servers guarantee that files get balanced out over the whole Ceph
537cluster, this way even high load will not overload a single host, which can be
d180eb39 538an issue with traditional shared filesystem approaches, like `NFS`, for
58f95dd7
TL
539example.
540
2394c306 541{pve} supports both, using an existing xref:storage_cephfs[CephFS as storage]
58f95dd7
TL
542to save backups, ISO files or container templates and creating a
543hyper-converged CephFS itself.
544
545
546[[pveceph_fs_mds]]
547Metadata Server (MDS)
548~~~~~~~~~~~~~~~~~~~~~
549
550CephFS needs at least one Metadata Server to be configured and running to be
551able to work. One can simply create one through the {pve} web GUI's `Node ->
552CephFS` panel or on the command line with:
553
554----
555pveceph mds create
556----
557
558Multiple metadata servers can be created in a cluster. But with the default
559settings only one can be active at any time. If an MDS, or its node, becomes
560unresponsive (or crashes), another `standby` MDS will get promoted to `active`.
561One can speed up the hand-over between the active and a standby MDS up by using
562the 'hotstandby' parameter option on create, or if you have already created it
563you may set/add:
564
565----
566mds standby replay = true
567----
568
569in the ceph.conf respective MDS section. With this enabled, this specific MDS
570will always poll the active one, so that it can take over faster as it is in a
3580eb13 571`warm` state. But naturally, the active polling will cause some additional
58f95dd7
TL
572performance impact on your system and active `MDS`.
573
574Multiple Active MDS
575^^^^^^^^^^^^^^^^^^^
576
577Since Luminous (12.2.x) you can also have multiple active metadata servers
578running, but this is normally only useful for a high count on parallel clients,
579as else the `MDS` seldom is the bottleneck. If you want to set this up please
580refer to the ceph documentation. footnote:[Configuring multiple active MDS
127ca409 581daemons http://docs.ceph.com/docs/luminous/cephfs/multimds/]
58f95dd7
TL
582
583[[pveceph_fs_create]]
584Create a CephFS
585~~~~~~~~~~~~~~~
586
587With {pve}'s CephFS integration into you can create a CephFS easily over the
588Web GUI, the CLI or an external API interface. Some prerequisites are required
589for this to work:
590
591.Prerequisites for a successful CephFS setup:
592- xref:pve_ceph_install[Install Ceph packages], if this was already done some
593 time ago you might want to rerun it on an up to date system to ensure that
594 also all CephFS related packages get installed.
595- xref:pve_ceph_monitors[Setup Monitors]
596- xref:pve_ceph_monitors[Setup your OSDs]
597- xref:pveceph_fs_mds[Setup at least one MDS]
598
599After this got all checked and done you can simply create a CephFS through
600either the Web GUI's `Node -> CephFS` panel or the command line tool `pveceph`,
601for example with:
602
603----
604pveceph fs create --pg_num 128 --add-storage
605----
606
607This creates a CephFS named `'cephfs'' using a pool for its data named
608`'cephfs_data'' with `128` placement groups and a pool for its metadata named
609`'cephfs_metadata'' with one quarter of the data pools placement groups (`32`).
610Check the xref:pve_ceph_pools[{pve} managed Ceph pool chapter] or visit the
611Ceph documentation for more information regarding a fitting placement group
612number (`pg_num`) for your setup footnote:[Ceph Placement Groups
127ca409 613http://docs.ceph.com/docs/luminous/rados/operations/placement-groups/].
58f95dd7
TL
614Additionally, the `'--add-storage'' parameter will add the CephFS to the {pve}
615storage configuration after it was created successfully.
616
617Destroy CephFS
618~~~~~~~~~~~~~~
619
fa9b4ee1 620WARNING: Destroying a CephFS will render all its data unusable, this cannot be
58f95dd7
TL
621undone!
622
623If you really want to destroy an existing CephFS you first need to stop, or
624destroy, all metadata server (`M̀DS`). You can destroy them either over the Web
625GUI or the command line interface, with:
626
627----
628pveceph mds destroy NAME
629----
630on each {pve} node hosting a MDS daemon.
631
632Then, you can remove (destroy) CephFS by issuing a:
633
634----
de2f8225 635ceph fs rm NAME --yes-i-really-mean-it
58f95dd7
TL
636----
637on a single node hosting Ceph. After this you may want to remove the created
638data and metadata pools, this can be done either over the Web GUI or the CLI
639with:
640
641----
642pveceph pool destroy NAME
643----
0840a663 644
6ff32926 645
10df14fb
TL
646Ceph monitoring and troubleshooting
647-----------------------------------
648A good start is to continuosly monitor the ceph health from the start of
649initial deployment. Either through the ceph tools itself, but also by accessing
650the status through the {pve} link:api-viewer/index.html[API].
6ff32926 651
10df14fb
TL
652The following ceph commands below can be used to see if the cluster is healthy
653('HEALTH_OK'), if there are warnings ('HEALTH_WARN'), or even errors
654('HEALTH_ERR'). If the cluster is in an unhealthy state the status commands
655below will also give you an overview on the current events and actions take.
6ff32926
AA
656
657----
10df14fb
TL
658# single time output
659pve# ceph -s
660# continuously output status changes (press CTRL+C to stop)
661pve# ceph -w
6ff32926
AA
662----
663
664To get a more detailed view, every ceph service has a log file under
665`/var/log/ceph/` and if there is not enough detail, the log level can be
666adjusted footnote:[Ceph log and debugging http://docs.ceph.com/docs/luminous/rados/troubleshooting/log-and-debug/].
667
668You can find more information about troubleshooting
669footnote:[Ceph troubleshooting http://docs.ceph.com/docs/luminous/rados/troubleshooting/]
670a Ceph cluster on its website.
671
672
0840a663
DM
673ifdef::manvolnum[]
674include::pve-copyright.adoc[]
675endif::manvolnum[]