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