]> git.proxmox.com Git - pve-docs.git/blame_incremental - pvecm.adoc
fix #5429: network: override device names: include Type=ether
[pve-docs.git] / pvecm.adoc
... / ...
CommitLineData
1[[chapter_pvecm]]
2ifdef::manvolnum[]
3pvecm(1)
4========
5:pve-toplevel:
6
7NAME
8----
9
10pvecm - Proxmox VE Cluster Manager
11
12SYNOPSIS
13--------
14
15include::pvecm.1-synopsis.adoc[]
16
17DESCRIPTION
18-----------
19endif::manvolnum[]
20
21ifndef::manvolnum[]
22Cluster Manager
23===============
24:pve-toplevel:
25endif::manvolnum[]
26
27The {pve} cluster manager `pvecm` is a tool to create a group of
28physical servers. Such a group is called a *cluster*. We use the
29http://www.corosync.org[Corosync Cluster Engine] for reliable group
30communication. There's no explicit limit for the number of nodes in a cluster.
31In practice, the actual possible node count may be limited by the host and
32network performance. Currently (2021), there are reports of clusters (using
33high-end enterprise hardware) with over 50 nodes in production.
34
35`pvecm` can be used to create a new cluster, join nodes to a cluster,
36leave the cluster, get status information, and do various other cluster-related
37tasks. The **P**rox**m**o**x** **C**luster **F**ile **S**ystem (``pmxcfs'')
38is used to transparently distribute the cluster configuration to all cluster
39nodes.
40
41Grouping nodes into a cluster has the following advantages:
42
43* Centralized, web-based management
44
45* Multi-master clusters: each node can do all management tasks
46
47* Use of `pmxcfs`, a database-driven file system, for storing configuration
48 files, replicated in real-time on all nodes using `corosync`
49
50* Easy migration of virtual machines and containers between physical
51 hosts
52
53* Fast deployment
54
55* Cluster-wide services like firewall and HA
56
57
58Requirements
59------------
60
61* All nodes must be able to connect to each other via UDP ports 5405-5412
62 for corosync to work.
63
64* Date and time must be synchronized.
65
66* An SSH tunnel on TCP port 22 between nodes is required.
67
68* If you are interested in High Availability, you need to have at
69 least three nodes for reliable quorum. All nodes should have the
70 same version.
71
72* We recommend a dedicated NIC for the cluster traffic, especially if
73 you use shared storage.
74
75* The root password of a cluster node is required for adding nodes.
76
77* Online migration of virtual machines is only supported when nodes have CPUs
78 from the same vendor. It might work otherwise, but this is never guaranteed.
79
80NOTE: It is not possible to mix {pve} 3.x and earlier with {pve} 4.X cluster
81nodes.
82
83NOTE: While it's possible to mix {pve} 4.4 and {pve} 5.0 nodes, doing so is
84not supported as a production configuration and should only be done temporarily,
85during an upgrade of the whole cluster from one major version to another.
86
87NOTE: Running a cluster of {pve} 6.x with earlier versions is not possible. The
88cluster protocol (corosync) between {pve} 6.x and earlier versions changed
89fundamentally. The corosync 3 packages for {pve} 5.4 are only intended for the
90upgrade procedure to {pve} 6.0.
91
92
93Preparing Nodes
94---------------
95
96First, install {pve} on all nodes. Make sure that each node is
97installed with the final hostname and IP configuration. Changing the
98hostname and IP is not possible after cluster creation.
99
100While it's common to reference all node names and their IPs in `/etc/hosts` (or
101make their names resolvable through other means), this is not necessary for a
102cluster to work. It may be useful however, as you can then connect from one node
103to another via SSH, using the easier to remember node name (see also
104xref:pvecm_corosync_addresses[Link Address Types]). Note that we always
105recommend referencing nodes by their IP addresses in the cluster configuration.
106
107
108[[pvecm_create_cluster]]
109Create a Cluster
110----------------
111
112You can either create a cluster on the console (login via `ssh`), or through
113the API using the {pve} web interface (__Datacenter -> Cluster__).
114
115NOTE: Use a unique name for your cluster. This name cannot be changed later.
116The cluster name follows the same rules as node names.
117
118[[pvecm_cluster_create_via_gui]]
119Create via Web GUI
120~~~~~~~~~~~~~~~~~~
121
122[thumbnail="screenshot/gui-cluster-create.png"]
123
124Under __Datacenter -> Cluster__, click on *Create Cluster*. Enter the cluster
125name and select a network connection from the drop-down list to serve as the
126main cluster network (Link 0). It defaults to the IP resolved via the node's
127hostname.
128
129As of {pve} 6.2, up to 8 fallback links can be added to a cluster. To add a
130redundant link, click the 'Add' button and select a link number and IP address
131from the respective fields. Prior to {pve} 6.2, to add a second link as
132fallback, you can select the 'Advanced' checkbox and choose an additional
133network interface (Link 1, see also xref:pvecm_redundancy[Corosync Redundancy]).
134
135NOTE: Ensure that the network selected for cluster communication is not used for
136any high traffic purposes, like network storage or live-migration.
137While the cluster network itself produces small amounts of data, it is very
138sensitive to latency. Check out full
139xref:pvecm_cluster_network_requirements[cluster network requirements].
140
141[[pvecm_cluster_create_via_cli]]
142Create via the Command Line
143~~~~~~~~~~~~~~~~~~~~~~~~~~~
144
145Login via `ssh` to the first {pve} node and run the following command:
146
147----
148 hp1# pvecm create CLUSTERNAME
149----
150
151To check the state of the new cluster use:
152
153----
154 hp1# pvecm status
155----
156
157Multiple Clusters in the Same Network
158~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
159
160It is possible to create multiple clusters in the same physical or logical
161network. In this case, each cluster must have a unique name to avoid possible
162clashes in the cluster communication stack. Furthermore, this helps avoid human
163confusion by making clusters clearly distinguishable.
164
165While the bandwidth requirement of a corosync cluster is relatively low, the
166latency of packages and the package per second (PPS) rate is the limiting
167factor. Different clusters in the same network can compete with each other for
168these resources, so it may still make sense to use separate physical network
169infrastructure for bigger clusters.
170
171[[pvecm_join_node_to_cluster]]
172Adding Nodes to the Cluster
173---------------------------
174
175CAUTION: All existing configuration in `/etc/pve` is overwritten when joining a
176cluster. In particular, a joining node cannot hold any guests, since guest IDs
177could otherwise conflict, and the node will inherit the cluster's storage
178configuration. To join a node with existing guest, as a workaround, you can
179create a backup of each guest (using `vzdump`) and restore it under a different
180ID after joining. If the node's storage layout differs, you will need to re-add
181the node's storages, and adapt each storage's node restriction to reflect on
182which nodes the storage is actually available.
183
184Join Node to Cluster via GUI
185~~~~~~~~~~~~~~~~~~~~~~~~~~~~
186
187[thumbnail="screenshot/gui-cluster-join-information.png"]
188
189Log in to the web interface on an existing cluster node. Under __Datacenter ->
190Cluster__, click the *Join Information* button at the top. Then, click on the
191button *Copy Information*. Alternatively, copy the string from the 'Information'
192field manually.
193
194[thumbnail="screenshot/gui-cluster-join.png"]
195
196Next, log in to the web interface on the node you want to add.
197Under __Datacenter -> Cluster__, click on *Join Cluster*. Fill in the
198'Information' field with the 'Join Information' text you copied earlier.
199Most settings required for joining the cluster will be filled out
200automatically. For security reasons, the cluster password has to be entered
201manually.
202
203NOTE: To enter all required data manually, you can disable the 'Assisted Join'
204checkbox.
205
206After clicking the *Join* button, the cluster join process will start
207immediately. After the node has joined the cluster, its current node certificate
208will be replaced by one signed from the cluster certificate authority (CA).
209This means that the current session will stop working after a few seconds. You
210then might need to force-reload the web interface and log in again with the
211cluster credentials.
212
213Now your node should be visible under __Datacenter -> Cluster__.
214
215Join Node to Cluster via Command Line
216~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
217
218Log in to the node you want to join into an existing cluster via `ssh`.
219
220----
221 # pvecm add IP-ADDRESS-CLUSTER
222----
223
224For `IP-ADDRESS-CLUSTER`, use the IP or hostname of an existing cluster node.
225An IP address is recommended (see xref:pvecm_corosync_addresses[Link Address Types]).
226
227
228To check the state of the cluster use:
229
230----
231 # pvecm status
232----
233
234.Cluster status after adding 4 nodes
235----
236 # pvecm status
237Cluster information
238~~~~~~~~~~~~~~~~~~~
239Name: prod-central
240Config Version: 3
241Transport: knet
242Secure auth: on
243
244Quorum information
245~~~~~~~~~~~~~~~~~~
246Date: Tue Sep 14 11:06:47 2021
247Quorum provider: corosync_votequorum
248Nodes: 4
249Node ID: 0x00000001
250Ring ID: 1.1a8
251Quorate: Yes
252
253Votequorum information
254~~~~~~~~~~~~~~~~~~~~~~
255Expected votes: 4
256Highest expected: 4
257Total votes: 4
258Quorum: 3
259Flags: Quorate
260
261Membership information
262~~~~~~~~~~~~~~~~~~~~~~
263 Nodeid Votes Name
2640x00000001 1 192.168.15.91
2650x00000002 1 192.168.15.92 (local)
2660x00000003 1 192.168.15.93
2670x00000004 1 192.168.15.94
268----
269
270If you only want a list of all nodes, use:
271
272----
273 # pvecm nodes
274----
275
276.List nodes in a cluster
277----
278 # pvecm nodes
279
280Membership information
281~~~~~~~~~~~~~~~~~~~~~~
282 Nodeid Votes Name
283 1 1 hp1
284 2 1 hp2 (local)
285 3 1 hp3
286 4 1 hp4
287----
288
289[[pvecm_adding_nodes_with_separated_cluster_network]]
290Adding Nodes with Separated Cluster Network
291~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
292
293When adding a node to a cluster with a separated cluster network, you need to
294use the 'link0' parameter to set the nodes address on that network:
295
296[source,bash]
297----
298# pvecm add IP-ADDRESS-CLUSTER --link0 LOCAL-IP-ADDRESS-LINK0
299----
300
301If you want to use the built-in xref:pvecm_redundancy[redundancy] of the
302Kronosnet transport layer, also use the 'link1' parameter.
303
304Using the GUI, you can select the correct interface from the corresponding
305'Link X' fields in the *Cluster Join* dialog.
306
307Remove a Cluster Node
308---------------------
309
310CAUTION: Read the procedure carefully before proceeding, as it may
311not be what you want or need.
312
313Move all virtual machines from the node. Ensure that you have made copies of any
314local data or backups that you want to keep. In addition, make sure to remove
315any scheduled replication jobs to the node to be removed.
316
317CAUTION: Failure to remove replication jobs to a node before removing said node
318will result in the replication job becoming irremovable. Especially note that
319replication automatically switches direction if a replicated VM is migrated, so
320by migrating a replicated VM from a node to be deleted, replication jobs will be
321set up to that node automatically.
322
323In the following example, we will remove the node hp4 from the cluster.
324
325Log in to a *different* cluster node (not hp4), and issue a `pvecm nodes`
326command to identify the node ID to remove:
327
328----
329 hp1# pvecm nodes
330
331Membership information
332~~~~~~~~~~~~~~~~~~~~~~
333 Nodeid Votes Name
334 1 1 hp1 (local)
335 2 1 hp2
336 3 1 hp3
337 4 1 hp4
338----
339
340
341At this point, you must power off hp4 and ensure that it will not power on
342again (in the network) with its current configuration.
343
344IMPORTANT: As mentioned above, it is critical to power off the node
345*before* removal, and make sure that it will *not* power on again
346(in the existing cluster network) with its current configuration.
347If you power on the node as it is, the cluster could end up broken,
348and it could be difficult to restore it to a functioning state.
349
350After powering off the node hp4, we can safely remove it from the cluster.
351
352----
353 hp1# pvecm delnode hp4
354 Killing node 4
355----
356
357NOTE: At this point, it is possible that you will receive an error message
358stating `Could not kill node (error = CS_ERR_NOT_EXIST)`. This does not
359signify an actual failure in the deletion of the node, but rather a failure in
360corosync trying to kill an offline node. Thus, it can be safely ignored.
361
362Use `pvecm nodes` or `pvecm status` to check the node list again. It should
363look something like:
364
365----
366hp1# pvecm status
367
368...
369
370Votequorum information
371~~~~~~~~~~~~~~~~~~~~~~
372Expected votes: 3
373Highest expected: 3
374Total votes: 3
375Quorum: 2
376Flags: Quorate
377
378Membership information
379~~~~~~~~~~~~~~~~~~~~~~
380 Nodeid Votes Name
3810x00000001 1 192.168.15.90 (local)
3820x00000002 1 192.168.15.91
3830x00000003 1 192.168.15.92
384----
385
386If, for whatever reason, you want this server to join the same cluster again,
387you have to:
388
389* do a fresh install of {pve} on it,
390
391* then join it, as explained in the previous section.
392
393The configuration files for the removed node will still reside in
394'/etc/pve/nodes/hp4'. Recover any configuration you still need and remove the
395directory afterwards.
396
397NOTE: After removal of the node, its SSH fingerprint will still reside in the
398'known_hosts' of the other nodes. If you receive an SSH error after rejoining
399a node with the same IP or hostname, run `pvecm updatecerts` once on the
400re-added node to update its fingerprint cluster wide.
401
402[[pvecm_separate_node_without_reinstall]]
403Separate a Node Without Reinstalling
404~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
405
406CAUTION: This is *not* the recommended method, proceed with caution. Use the
407previous method if you're unsure.
408
409You can also separate a node from a cluster without reinstalling it from
410scratch. But after removing the node from the cluster, it will still have
411access to any shared storage. This must be resolved before you start removing
412the node from the cluster. A {pve} cluster cannot share the exact same
413storage with another cluster, as storage locking doesn't work over the cluster
414boundary. Furthermore, it may also lead to VMID conflicts.
415
416It's suggested that you create a new storage, where only the node which you want
417to separate has access. This can be a new export on your NFS or a new Ceph
418pool, to name a few examples. It's just important that the exact same storage
419does not get accessed by multiple clusters. After setting up this storage, move
420all data and VMs from the node to it. Then you are ready to separate the
421node from the cluster.
422
423WARNING: Ensure that all shared resources are cleanly separated! Otherwise you
424will run into conflicts and problems.
425
426First, stop the corosync and pve-cluster services on the node:
427[source,bash]
428----
429systemctl stop pve-cluster
430systemctl stop corosync
431----
432
433Start the cluster file system again in local mode:
434[source,bash]
435----
436pmxcfs -l
437----
438
439Delete the corosync configuration files:
440[source,bash]
441----
442rm /etc/pve/corosync.conf
443rm -r /etc/corosync/*
444----
445
446You can now start the file system again as a normal service:
447[source,bash]
448----
449killall pmxcfs
450systemctl start pve-cluster
451----
452
453The node is now separated from the cluster. You can deleted it from any
454remaining node of the cluster with:
455[source,bash]
456----
457pvecm delnode oldnode
458----
459
460If the command fails due to a loss of quorum in the remaining node, you can set
461the expected votes to 1 as a workaround:
462[source,bash]
463----
464pvecm expected 1
465----
466
467And then repeat the 'pvecm delnode' command.
468
469Now switch back to the separated node and delete all the remaining cluster
470files on it. This ensures that the node can be added to another cluster again
471without problems.
472
473[source,bash]
474----
475rm /var/lib/corosync/*
476----
477
478As the configuration files from the other nodes are still in the cluster
479file system, you may want to clean those up too. After making absolutely sure
480that you have the correct node name, you can simply remove the entire
481directory recursively from '/etc/pve/nodes/NODENAME'.
482
483CAUTION: The node's SSH keys will remain in the 'authorized_key' file. This
484means that the nodes can still connect to each other with public key
485authentication. You should fix this by removing the respective keys from the
486'/etc/pve/priv/authorized_keys' file.
487
488
489Quorum
490------
491
492{pve} use a quorum-based technique to provide a consistent state among
493all cluster nodes.
494
495[quote, from Wikipedia, Quorum (distributed computing)]
496____
497A quorum is the minimum number of votes that a distributed transaction
498has to obtain in order to be allowed to perform an operation in a
499distributed system.
500____
501
502In case of network partitioning, state changes requires that a
503majority of nodes are online. The cluster switches to read-only mode
504if it loses quorum.
505
506NOTE: {pve} assigns a single vote to each node by default.
507
508
509Cluster Network
510---------------
511
512The cluster network is the core of a cluster. All messages sent over it have to
513be delivered reliably to all nodes in their respective order. In {pve} this
514part is done by corosync, an implementation of a high performance, low overhead,
515high availability development toolkit. It serves our decentralized configuration
516file system (`pmxcfs`).
517
518[[pvecm_cluster_network_requirements]]
519Network Requirements
520~~~~~~~~~~~~~~~~~~~~
521
522The {pve} cluster stack requires a reliable network with latencies under 5
523milliseconds (LAN performance) between all nodes to operate stably. While on
524setups with a small node count a network with higher latencies _may_ work, this
525is not guaranteed and gets rather unlikely with more than three nodes and
526latencies above around 10 ms.
527
528The network should not be used heavily by other members, as while corosync does
529not uses much bandwidth it is sensitive to latency jitters; ideally corosync
530runs on its own physically separated network. Especially do not use a shared
531network for corosync and storage (except as a potential low-priority fallback
532in a xref:pvecm_redundancy[redundant] configuration).
533
534Before setting up a cluster, it is good practice to check if the network is fit
535for that purpose. To ensure that the nodes can connect to each other on the
536cluster network, you can test the connectivity between them with the `ping`
537tool.
538
539If the {pve} firewall is enabled, ACCEPT rules for corosync will automatically
540be generated - no manual action is required.
541
542NOTE: Corosync used Multicast before version 3.0 (introduced in {pve} 6.0).
543Modern versions rely on https://kronosnet.org/[Kronosnet] for cluster
544communication, which, for now, only supports regular UDP unicast.
545
546CAUTION: You can still enable Multicast or legacy unicast by setting your
547transport to `udp` or `udpu` in your xref:pvecm_edit_corosync_conf[corosync.conf],
548but keep in mind that this will disable all cryptography and redundancy support.
549This is therefore not recommended.
550
551Separate Cluster Network
552~~~~~~~~~~~~~~~~~~~~~~~~
553
554When creating a cluster without any parameters, the corosync cluster network is
555generally shared with the web interface and the VMs' network. Depending on
556your setup, even storage traffic may get sent over the same network. It's
557recommended to change that, as corosync is a time-critical, real-time
558application.
559
560Setting Up a New Network
561^^^^^^^^^^^^^^^^^^^^^^^^
562
563First, you have to set up a new network interface. It should be on a physically
564separate network. Ensure that your network fulfills the
565xref:pvecm_cluster_network_requirements[cluster network requirements].
566
567Separate On Cluster Creation
568^^^^^^^^^^^^^^^^^^^^^^^^^^^^
569
570This is possible via the 'linkX' parameters of the 'pvecm create'
571command, used for creating a new cluster.
572
573If you have set up an additional NIC with a static address on 10.10.10.1/25,
574and want to send and receive all cluster communication over this interface,
575you would execute:
576
577[source,bash]
578----
579pvecm create test --link0 10.10.10.1
580----
581
582To check if everything is working properly, execute:
583[source,bash]
584----
585systemctl status corosync
586----
587
588Afterwards, proceed as described above to
589xref:pvecm_adding_nodes_with_separated_cluster_network[add nodes with a separated cluster network].
590
591[[pvecm_separate_cluster_net_after_creation]]
592Separate After Cluster Creation
593^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
594
595You can do this if you have already created a cluster and want to switch
596its communication to another network, without rebuilding the whole cluster.
597This change may lead to short periods of quorum loss in the cluster, as nodes
598have to restart corosync and come up one after the other on the new network.
599
600Check how to xref:pvecm_edit_corosync_conf[edit the corosync.conf file] first.
601Then, open it and you should see a file similar to:
602
603----
604logging {
605 debug: off
606 to_syslog: yes
607}
608
609nodelist {
610
611 node {
612 name: due
613 nodeid: 2
614 quorum_votes: 1
615 ring0_addr: due
616 }
617
618 node {
619 name: tre
620 nodeid: 3
621 quorum_votes: 1
622 ring0_addr: tre
623 }
624
625 node {
626 name: uno
627 nodeid: 1
628 quorum_votes: 1
629 ring0_addr: uno
630 }
631
632}
633
634quorum {
635 provider: corosync_votequorum
636}
637
638totem {
639 cluster_name: testcluster
640 config_version: 3
641 ip_version: ipv4-6
642 secauth: on
643 version: 2
644 interface {
645 linknumber: 0
646 }
647
648}
649----
650
651NOTE: `ringX_addr` actually specifies a corosync *link address*. The name "ring"
652is a remnant of older corosync versions that is kept for backwards
653compatibility.
654
655The first thing you want to do is add the 'name' properties in the node entries,
656if you do not see them already. Those *must* match the node name.
657
658Then replace all addresses from the 'ring0_addr' properties of all nodes with
659the new addresses. You may use plain IP addresses or hostnames here. If you use
660hostnames, ensure that they are resolvable from all nodes (see also
661xref:pvecm_corosync_addresses[Link Address Types]).
662
663In this example, we want to switch cluster communication to the
66410.10.10.0/25 network, so we change the 'ring0_addr' of each node respectively.
665
666NOTE: The exact same procedure can be used to change other 'ringX_addr' values
667as well. However, we recommend only changing one link address at a time, so
668that it's easier to recover if something goes wrong.
669
670After we increase the 'config_version' property, the new configuration file
671should look like:
672
673----
674logging {
675 debug: off
676 to_syslog: yes
677}
678
679nodelist {
680
681 node {
682 name: due
683 nodeid: 2
684 quorum_votes: 1
685 ring0_addr: 10.10.10.2
686 }
687
688 node {
689 name: tre
690 nodeid: 3
691 quorum_votes: 1
692 ring0_addr: 10.10.10.3
693 }
694
695 node {
696 name: uno
697 nodeid: 1
698 quorum_votes: 1
699 ring0_addr: 10.10.10.1
700 }
701
702}
703
704quorum {
705 provider: corosync_votequorum
706}
707
708totem {
709 cluster_name: testcluster
710 config_version: 4
711 ip_version: ipv4-6
712 secauth: on
713 version: 2
714 interface {
715 linknumber: 0
716 }
717
718}
719----
720
721Then, after a final check to see that all changed information is correct, we
722save it and once again follow the
723xref:pvecm_edit_corosync_conf[edit corosync.conf file] section to bring it into
724effect.
725
726The changes will be applied live, so restarting corosync is not strictly
727necessary. If you changed other settings as well, or notice corosync
728complaining, you can optionally trigger a restart.
729
730On a single node execute:
731
732[source,bash]
733----
734systemctl restart corosync
735----
736
737Now check if everything is okay:
738
739[source,bash]
740----
741systemctl status corosync
742----
743
744If corosync begins to work again, restart it on all other nodes too.
745They will then join the cluster membership one by one on the new network.
746
747[[pvecm_corosync_addresses]]
748Corosync Addresses
749~~~~~~~~~~~~~~~~~~
750
751A corosync link address (for backwards compatibility denoted by 'ringX_addr' in
752`corosync.conf`) can be specified in two ways:
753
754* **IPv4/v6 addresses** can be used directly. They are recommended, since they
755are static and usually not changed carelessly.
756
757* **Hostnames** will be resolved using `getaddrinfo`, which means that by
758default, IPv6 addresses will be used first, if available (see also
759`man gai.conf`). Keep this in mind, especially when upgrading an existing
760cluster to IPv6.
761
762CAUTION: Hostnames should be used with care, since the addresses they
763resolve to can be changed without touching corosync or the node it runs on -
764which may lead to a situation where an address is changed without thinking
765about implications for corosync.
766
767A separate, static hostname specifically for corosync is recommended, if
768hostnames are preferred. Also, make sure that every node in the cluster can
769resolve all hostnames correctly.
770
771Since {pve} 5.1, while supported, hostnames will be resolved at the time of
772entry. Only the resolved IP is saved to the configuration.
773
774Nodes that joined the cluster on earlier versions likely still use their
775unresolved hostname in `corosync.conf`. It might be a good idea to replace
776them with IPs or a separate hostname, as mentioned above.
777
778
779[[pvecm_redundancy]]
780Corosync Redundancy
781-------------------
782
783Corosync supports redundant networking via its integrated Kronosnet layer by
784default (it is not supported on the legacy udp/udpu transports). It can be
785enabled by specifying more than one link address, either via the '--linkX'
786parameters of `pvecm`, in the GUI as **Link 1** (while creating a cluster or
787adding a new node) or by specifying more than one 'ringX_addr' in
788`corosync.conf`.
789
790NOTE: To provide useful failover, every link should be on its own
791physical network connection.
792
793Links are used according to a priority setting. You can configure this priority
794by setting 'knet_link_priority' in the corresponding interface section in
795`corosync.conf`, or, preferably, using the 'priority' parameter when creating
796your cluster with `pvecm`:
797
798----
799 # pvecm create CLUSTERNAME --link0 10.10.10.1,priority=15 --link1 10.20.20.1,priority=20
800----
801
802This would cause 'link1' to be used first, since it has the higher priority.
803
804If no priorities are configured manually (or two links have the same priority),
805links will be used in order of their number, with the lower number having higher
806priority.
807
808Even if all links are working, only the one with the highest priority will see
809corosync traffic. Link priorities cannot be mixed, meaning that links with
810different priorities will not be able to communicate with each other.
811
812Since lower priority links will not see traffic unless all higher priorities
813have failed, it becomes a useful strategy to specify networks used for
814other tasks (VMs, storage, etc.) as low-priority links. If worst comes to
815worst, a higher latency or more congested connection might be better than no
816connection at all.
817
818Adding Redundant Links To An Existing Cluster
819~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
820
821To add a new link to a running configuration, first check how to
822xref:pvecm_edit_corosync_conf[edit the corosync.conf file].
823
824Then, add a new 'ringX_addr' to every node in the `nodelist` section. Make
825sure that your 'X' is the same for every node you add it to, and that it is
826unique for each node.
827
828Lastly, add a new 'interface', as shown below, to your `totem`
829section, replacing 'X' with the link number chosen above.
830
831Assuming you added a link with number 1, the new configuration file could look
832like this:
833
834----
835logging {
836 debug: off
837 to_syslog: yes
838}
839
840nodelist {
841
842 node {
843 name: due
844 nodeid: 2
845 quorum_votes: 1
846 ring0_addr: 10.10.10.2
847 ring1_addr: 10.20.20.2
848 }
849
850 node {
851 name: tre
852 nodeid: 3
853 quorum_votes: 1
854 ring0_addr: 10.10.10.3
855 ring1_addr: 10.20.20.3
856 }
857
858 node {
859 name: uno
860 nodeid: 1
861 quorum_votes: 1
862 ring0_addr: 10.10.10.1
863 ring1_addr: 10.20.20.1
864 }
865
866}
867
868quorum {
869 provider: corosync_votequorum
870}
871
872totem {
873 cluster_name: testcluster
874 config_version: 4
875 ip_version: ipv4-6
876 secauth: on
877 version: 2
878 interface {
879 linknumber: 0
880 }
881 interface {
882 linknumber: 1
883 }
884}
885----
886
887The new link will be enabled as soon as you follow the last steps to
888xref:pvecm_edit_corosync_conf[edit the corosync.conf file]. A restart should not
889be necessary. You can check that corosync loaded the new link using:
890
891----
892journalctl -b -u corosync
893----
894
895It might be a good idea to test the new link by temporarily disconnecting the
896old link on one node and making sure that its status remains online while
897disconnected:
898
899----
900pvecm status
901----
902
903If you see a healthy cluster state, it means that your new link is being used.
904
905
906Role of SSH in {pve} Clusters
907-----------------------------
908
909{pve} utilizes SSH tunnels for various features.
910
911* Proxying console/shell sessions (node and guests)
912+
913When using the shell for node B while being connected to node A, connects to a
914terminal proxy on node A, which is in turn connected to the login shell on node
915B via a non-interactive SSH tunnel.
916
917* VM and CT memory and local-storage migration in 'secure' mode.
918+
919During the migration, one or more SSH tunnel(s) are established between the
920source and target nodes, in order to exchange migration information and
921transfer memory and disk contents.
922
923* Storage replication
924
925SSH setup
926~~~~~~~~~
927
928On {pve} systems, the following changes are made to the SSH configuration/setup:
929
930* the `root` user's SSH client config gets setup to prefer `AES` over `ChaCha20`
931
932* the `root` user's `authorized_keys` file gets linked to
933 `/etc/pve/priv/authorized_keys`, merging all authorized keys within a cluster
934
935* `sshd` is configured to allow logging in as root with a password
936
937NOTE: Older systems might also have `/etc/ssh/ssh_known_hosts` set up as symlink
938pointing to `/etc/pve/priv/known_hosts`, containing a merged version of all
939node host keys. This system was replaced with explicit host key pinning in
940`pve-cluster <<INSERT VERSION>>`, the symlink can be deconfigured if still in
941place by running `pvecm updatecerts --unmerge-known-hosts`.
942
943Pitfalls due to automatic execution of `.bashrc` and siblings
944~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
945
946In case you have a custom `.bashrc`, or similar files that get executed on
947login by the configured shell, `ssh` will automatically run it once the session
948is established successfully. This can cause some unexpected behavior, as those
949commands may be executed with root permissions on any of the operations
950described above. This can cause possible problematic side-effects!
951
952In order to avoid such complications, it's recommended to add a check in
953`/root/.bashrc` to make sure the session is interactive, and only then run
954`.bashrc` commands.
955
956You can add this snippet at the beginning of your `.bashrc` file:
957
958----
959# Early exit if not running interactively to avoid side-effects!
960case $- in
961 *i*) ;;
962 *) return;;
963esac
964----
965
966Corosync External Vote Support
967------------------------------
968
969This section describes a way to deploy an external voter in a {pve} cluster.
970When configured, the cluster can sustain more node failures without
971violating safety properties of the cluster communication.
972
973For this to work, there are two services involved:
974
975* A QDevice daemon which runs on each {pve} node
976
977* An external vote daemon which runs on an independent server
978
979As a result, you can achieve higher availability, even in smaller setups (for
980example 2+1 nodes).
981
982QDevice Technical Overview
983~~~~~~~~~~~~~~~~~~~~~~~~~~
984
985The Corosync Quorum Device (QDevice) is a daemon which runs on each cluster
986node. It provides a configured number of votes to the cluster's quorum
987subsystem, based on an externally running third-party arbitrator's decision.
988Its primary use is to allow a cluster to sustain more node failures than
989standard quorum rules allow. This can be done safely as the external device
990can see all nodes and thus choose only one set of nodes to give its vote.
991This will only be done if said set of nodes can have quorum (again) after
992receiving the third-party vote.
993
994Currently, only 'QDevice Net' is supported as a third-party arbitrator. This is
995a daemon which provides a vote to a cluster partition, if it can reach the
996partition members over the network. It will only give votes to one partition
997of a cluster at any time.
998It's designed to support multiple clusters and is almost configuration and
999state free. New clusters are handled dynamically and no configuration file
1000is needed on the host running a QDevice.
1001
1002The only requirements for the external host are that it needs network access to
1003the cluster and to have a corosync-qnetd package available. We provide a package
1004for Debian based hosts, and other Linux distributions should also have a package
1005available through their respective package manager.
1006
1007NOTE: Unlike corosync itself, a QDevice connects to the cluster over TCP/IP.
1008The daemon can also run outside the LAN of the cluster and isn't limited to the
1009low latencies requirements of corosync.
1010
1011Supported Setups
1012~~~~~~~~~~~~~~~~
1013
1014We support QDevices for clusters with an even number of nodes and recommend
1015it for 2 node clusters, if they should provide higher availability.
1016For clusters with an odd node count, we currently discourage the use of
1017QDevices. The reason for this is the difference in the votes which the QDevice
1018provides for each cluster type. Even numbered clusters get a single additional
1019vote, which only increases availability, because if the QDevice
1020itself fails, you are in the same position as with no QDevice at all.
1021
1022On the other hand, with an odd numbered cluster size, the QDevice provides
1023'(N-1)' votes -- where 'N' corresponds to the cluster node count. This
1024alternative behavior makes sense; if it had only one additional vote, the
1025cluster could get into a split-brain situation. This algorithm allows for all
1026nodes but one (and naturally the QDevice itself) to fail. However, there are two
1027drawbacks to this:
1028
1029* If the QNet daemon itself fails, no other node may fail or the cluster
1030 immediately loses quorum. For example, in a cluster with 15 nodes, 7
1031 could fail before the cluster becomes inquorate. But, if a QDevice is
1032 configured here and it itself fails, **no single node** of the 15 may fail.
1033 The QDevice acts almost as a single point of failure in this case.
1034
1035* The fact that all but one node plus QDevice may fail sounds promising at
1036 first, but this may result in a mass recovery of HA services, which could
1037 overload the single remaining node. Furthermore, a Ceph server will stop
1038 providing services if only '((N-1)/2)' nodes or less remain online.
1039
1040If you understand the drawbacks and implications, you can decide yourself if
1041you want to use this technology in an odd numbered cluster setup.
1042
1043QDevice-Net Setup
1044~~~~~~~~~~~~~~~~~
1045
1046We recommend running any daemon which provides votes to corosync-qdevice as an
1047unprivileged user. {pve} and Debian provide a package which is already
1048configured to do so.
1049The traffic between the daemon and the cluster must be encrypted to ensure a
1050safe and secure integration of the QDevice in {pve}.
1051
1052First, install the 'corosync-qnetd' package on your external server
1053
1054----
1055external# apt install corosync-qnetd
1056----
1057
1058and the 'corosync-qdevice' package on all cluster nodes
1059
1060----
1061pve# apt install corosync-qdevice
1062----
1063
1064After doing this, ensure that all the nodes in the cluster are online.
1065
1066You can now set up your QDevice by running the following command on one
1067of the {pve} nodes:
1068
1069----
1070pve# pvecm qdevice setup <QDEVICE-IP>
1071----
1072
1073The SSH key from the cluster will be automatically copied to the QDevice.
1074
1075NOTE: Make sure to setup key-based access for the root user on your external
1076server, or temporarily allow root login with password during the setup phase.
1077If you receive an error such as 'Host key verification failed.' at this
1078stage, running `pvecm updatecerts` could fix the issue.
1079
1080After all the steps have successfully completed, you will see "Done". You can
1081verify that the QDevice has been set up with:
1082
1083----
1084pve# pvecm status
1085
1086...
1087
1088Votequorum information
1089~~~~~~~~~~~~~~~~~~~~~
1090Expected votes: 3
1091Highest expected: 3
1092Total votes: 3
1093Quorum: 2
1094Flags: Quorate Qdevice
1095
1096Membership information
1097~~~~~~~~~~~~~~~~~~~~~~
1098 Nodeid Votes Qdevice Name
1099 0x00000001 1 A,V,NMW 192.168.22.180 (local)
1100 0x00000002 1 A,V,NMW 192.168.22.181
1101 0x00000000 1 Qdevice
1102
1103----
1104
1105[[pvecm_qdevice_status_flags]]
1106QDevice Status Flags
1107^^^^^^^^^^^^^^^^^^^^
1108
1109The status output of the QDevice, as seen above, will usually contain three
1110columns:
1111
1112* `A` / `NA`: Alive or Not Alive. Indicates if the communication to the external
1113 `corosync-qnetd` daemon works.
1114* `V` / `NV`: If the QDevice will cast a vote for the node. In a split-brain
1115 situation, where the corosync connection between the nodes is down, but they
1116 both can still communicate with the external `corosync-qnetd` daemon,
1117 only one node will get the vote.
1118* `MW` / `NMW`: Master wins (`MV`) or not (`NMW`). Default is `NMW`, see
1119 footnote:[`votequorum_qdevice_master_wins` manual page
1120 https://manpages.debian.org/bookworm/libvotequorum-dev/votequorum_qdevice_master_wins.3.en.html].
1121* `NR`: QDevice is not registered.
1122
1123NOTE: If your QDevice is listed as `Not Alive` (`NA` in the output above),
1124ensure that port `5403` (the default port of the qnetd server) of your external
1125server is reachable via TCP/IP!
1126
1127
1128Frequently Asked Questions
1129~~~~~~~~~~~~~~~~~~~~~~~~~~
1130
1131Tie Breaking
1132^^^^^^^^^^^^
1133
1134In case of a tie, where two same-sized cluster partitions cannot see each other
1135but can see the QDevice, the QDevice chooses one of those partitions randomly
1136and provides a vote to it.
1137
1138Possible Negative Implications
1139^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1140
1141For clusters with an even node count, there are no negative implications when
1142using a QDevice. If it fails to work, it is the same as not having a QDevice
1143at all.
1144
1145Adding/Deleting Nodes After QDevice Setup
1146^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1147
1148If you want to add a new node or remove an existing one from a cluster with a
1149QDevice setup, you need to remove the QDevice first. After that, you can add or
1150remove nodes normally. Once you have a cluster with an even node count again,
1151you can set up the QDevice again as described previously.
1152
1153Removing the QDevice
1154^^^^^^^^^^^^^^^^^^^^
1155
1156If you used the official `pvecm` tool to add the QDevice, you can remove it
1157by running:
1158
1159----
1160pve# pvecm qdevice remove
1161----
1162
1163//Still TODO
1164//^^^^^^^^^^
1165//There is still stuff to add here
1166
1167
1168Corosync Configuration
1169----------------------
1170
1171The `/etc/pve/corosync.conf` file plays a central role in a {pve} cluster. It
1172controls the cluster membership and its network.
1173For further information about it, check the corosync.conf man page:
1174[source,bash]
1175----
1176man corosync.conf
1177----
1178
1179For node membership, you should always use the `pvecm` tool provided by {pve}.
1180You may have to edit the configuration file manually for other changes.
1181Here are a few best practice tips for doing this.
1182
1183[[pvecm_edit_corosync_conf]]
1184Edit corosync.conf
1185~~~~~~~~~~~~~~~~~~
1186
1187Editing the corosync.conf file is not always very straightforward. There are
1188two on each cluster node, one in `/etc/pve/corosync.conf` and the other in
1189`/etc/corosync/corosync.conf`. Editing the one in our cluster file system will
1190propagate the changes to the local one, but not vice versa.
1191
1192The configuration will get updated automatically, as soon as the file changes.
1193This means that changes which can be integrated in a running corosync will take
1194effect immediately. Thus, you should always make a copy and edit that instead,
1195to avoid triggering unintended changes when saving the file while editing.
1196
1197[source,bash]
1198----
1199cp /etc/pve/corosync.conf /etc/pve/corosync.conf.new
1200----
1201
1202Then, open the config file with your favorite editor, such as `nano` or
1203`vim.tiny`, which come pre-installed on every {pve} node.
1204
1205NOTE: Always increment the 'config_version' number after configuration changes;
1206omitting this can lead to problems.
1207
1208After making the necessary changes, create another copy of the current working
1209configuration file. This serves as a backup if the new configuration fails to
1210apply or causes other issues.
1211
1212[source,bash]
1213----
1214cp /etc/pve/corosync.conf /etc/pve/corosync.conf.bak
1215----
1216
1217Then replace the old configuration file with the new one:
1218[source,bash]
1219----
1220mv /etc/pve/corosync.conf.new /etc/pve/corosync.conf
1221----
1222
1223You can check if the changes could be applied automatically, using the following
1224commands:
1225[source,bash]
1226----
1227systemctl status corosync
1228journalctl -b -u corosync
1229----
1230
1231If the changes could not be applied automatically, you may have to restart the
1232corosync service via:
1233[source,bash]
1234----
1235systemctl restart corosync
1236----
1237
1238On errors, check the troubleshooting section below.
1239
1240Troubleshooting
1241~~~~~~~~~~~~~~~
1242
1243Issue: 'quorum.expected_votes must be configured'
1244^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1245
1246When corosync starts to fail and you get the following message in the system log:
1247
1248----
1249[...]
1250corosync[1647]: [QUORUM] Quorum provider: corosync_votequorum failed to initialize.
1251corosync[1647]: [SERV ] Service engine 'corosync_quorum' failed to load for reason
1252 'configuration error: nodelist or quorum.expected_votes must be configured!'
1253[...]
1254----
1255
1256It means that the hostname you set for a corosync 'ringX_addr' in the
1257configuration could not be resolved.
1258
1259Write Configuration When Not Quorate
1260^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1261
1262If you need to change '/etc/pve/corosync.conf' on a node with no quorum, and you
1263understand what you are doing, use:
1264[source,bash]
1265----
1266pvecm expected 1
1267----
1268
1269This sets the expected vote count to 1 and makes the cluster quorate. You can
1270then fix your configuration, or revert it back to the last working backup.
1271
1272This is not enough if corosync cannot start anymore. In that case, it is best to
1273edit the local copy of the corosync configuration in
1274'/etc/corosync/corosync.conf', so that corosync can start again. Ensure that on
1275all nodes, this configuration has the same content to avoid split-brain
1276situations.
1277
1278
1279[[pvecm_corosync_conf_glossary]]
1280Corosync Configuration Glossary
1281~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1282
1283ringX_addr::
1284This names the different link addresses for the Kronosnet connections between
1285nodes.
1286
1287
1288Cluster Cold Start
1289------------------
1290
1291It is obvious that a cluster is not quorate when all nodes are
1292offline. This is a common case after a power failure.
1293
1294NOTE: It is always a good idea to use an uninterruptible power supply
1295(``UPS'', also called ``battery backup'') to avoid this state, especially if
1296you want HA.
1297
1298On node startup, the `pve-guests` service is started and waits for
1299quorum. Once quorate, it starts all guests which have the `onboot`
1300flag set.
1301
1302When you turn on nodes, or when power comes back after power failure,
1303it is likely that some nodes will boot faster than others. Please keep in
1304mind that guest startup is delayed until you reach quorum.
1305
1306
1307[[pvecm_next_id_range]]
1308Guest VMID Auto-Selection
1309------------------------
1310
1311When creating new guests the web interface will ask the backend for a free VMID
1312automatically. The default range for searching is `100` to `1000000` (lower
1313than the maximal allowed VMID enforced by the schema).
1314
1315Sometimes admins either want to allocate new VMIDs in a separate range, for
1316example to easily separate temporary VMs with ones that choose a VMID manually.
1317Other times its just desired to provided a stable length VMID, for which
1318setting the lower boundary to, for example, `100000` gives much more room for.
1319
1320To accommodate this use case one can set either lower, upper or both boundaries
1321via the `datacenter.cfg` configuration file, which can be edited in the web
1322interface under 'Datacenter' -> 'Options'.
1323
1324NOTE: The range is only used for the next-id API call, so it isn't a hard
1325limit.
1326
1327Guest Migration
1328---------------
1329
1330Migrating virtual guests to other nodes is a useful feature in a
1331cluster. There are settings to control the behavior of such
1332migrations. This can be done via the configuration file
1333`datacenter.cfg` or for a specific migration via API or command-line
1334parameters.
1335
1336It makes a difference if a guest is online or offline, or if it has
1337local resources (like a local disk).
1338
1339For details about virtual machine migration, see the
1340xref:qm_migration[QEMU/KVM Migration Chapter].
1341
1342For details about container migration, see the
1343xref:pct_migration[Container Migration Chapter].
1344
1345Migration Type
1346~~~~~~~~~~~~~~
1347
1348The migration type defines if the migration data should be sent over an
1349encrypted (`secure`) channel or an unencrypted (`insecure`) one.
1350Setting the migration type to `insecure` means that the RAM content of a
1351virtual guest is also transferred unencrypted, which can lead to
1352information disclosure of critical data from inside the guest (for
1353example, passwords or encryption keys).
1354
1355Therefore, we strongly recommend using the secure channel if you do
1356not have full control over the network and can not guarantee that no
1357one is eavesdropping on it.
1358
1359NOTE: Storage migration does not follow this setting. Currently, it
1360always sends the storage content over a secure channel.
1361
1362Encryption requires a lot of computing power, so this setting is often
1363changed to `insecure` to achieve better performance. The impact on
1364modern systems is lower because they implement AES encryption in
1365hardware. The performance impact is particularly evident in fast
1366networks, where you can transfer 10 Gbps or more.
1367
1368Migration Network
1369~~~~~~~~~~~~~~~~~
1370
1371By default, {pve} uses the network in which cluster communication
1372takes place to send the migration traffic. This is not optimal both because
1373sensitive cluster traffic can be disrupted and this network may not
1374have the best bandwidth available on the node.
1375
1376Setting the migration network parameter allows the use of a dedicated
1377network for all migration traffic. In addition to the memory,
1378this also affects the storage traffic for offline migrations.
1379
1380The migration network is set as a network using CIDR notation. This
1381has the advantage that you don't have to set individual IP addresses
1382for each node. {pve} can determine the real address on the
1383destination node from the network specified in the CIDR form. To
1384enable this, the network must be specified so that each node has exactly one
1385IP in the respective network.
1386
1387Example
1388^^^^^^^
1389
1390We assume that we have a three-node setup, with three separate
1391networks. One for public communication with the Internet, one for
1392cluster communication, and a very fast one, which we want to use as a
1393dedicated network for migration.
1394
1395A network configuration for such a setup might look as follows:
1396
1397----
1398iface eno1 inet manual
1399
1400# public network
1401auto vmbr0
1402iface vmbr0 inet static
1403 address 192.X.Y.57/24
1404 gateway 192.X.Y.1
1405 bridge-ports eno1
1406 bridge-stp off
1407 bridge-fd 0
1408
1409# cluster network
1410auto eno2
1411iface eno2 inet static
1412 address 10.1.1.1/24
1413
1414# fast network
1415auto eno3
1416iface eno3 inet static
1417 address 10.1.2.1/24
1418----
1419
1420Here, we will use the network 10.1.2.0/24 as a migration network. For
1421a single migration, you can do this using the `migration_network`
1422parameter of the command-line tool:
1423
1424----
1425# qm migrate 106 tre --online --migration_network 10.1.2.0/24
1426----
1427
1428To configure this as the default network for all migrations in the
1429cluster, set the `migration` property of the `/etc/pve/datacenter.cfg`
1430file:
1431
1432----
1433# use dedicated migration network
1434migration: secure,network=10.1.2.0/24
1435----
1436
1437NOTE: The migration type must always be set when the migration network
1438is set in `/etc/pve/datacenter.cfg`.
1439
1440
1441ifdef::manvolnum[]
1442include::pve-copyright.adoc[]
1443endif::manvolnum[]