]> git.proxmox.com Git - pve-docs.git/blob - pvecm.adoc
4caca0ebbf81070769f81776e744c262785b40bf
[pve-docs.git] / pvecm.adoc
1 [[chapter_pvecm]]
2 ifdef::manvolnum[]
3 pvecm(1)
4 ========
5 :pve-toplevel:
6
7 NAME
8 ----
9
10 pvecm - Proxmox VE Cluster Manager
11
12 SYNOPSIS
13 --------
14
15 include::pvecm.1-synopsis.adoc[]
16
17 DESCRIPTION
18 -----------
19 endif::manvolnum[]
20
21 ifndef::manvolnum[]
22 Cluster Manager
23 ===============
24 :pve-toplevel:
25 endif::manvolnum[]
26
27 The {PVE} cluster manager `pvecm` is a tool to create a group of
28 physical servers. Such a group is called a *cluster*. We use the
29 http://www.corosync.org[Corosync Cluster Engine] for reliable group
30 communication, and such clusters can consist of up to 32 physical nodes
31 (probably more, dependent on network latency).
32
33 `pvecm` can be used to create a new cluster, join nodes to a cluster,
34 leave the cluster, get status information and do various other cluster
35 related tasks. The **P**rox**m**o**x** **C**luster **F**ile **S**ystem (``pmxcfs'')
36 is used to transparently distribute the cluster configuration to all cluster
37 nodes.
38
39 Grouping nodes into a cluster has the following advantages:
40
41 * Centralized, web based management
42
43 * Multi-master clusters: each node can do all management task
44
45 * `pmxcfs`: database-driven file system for storing configuration files,
46 replicated in real-time on all nodes using `corosync`.
47
48 * Easy migration of virtual machines and containers between physical
49 hosts
50
51 * Fast deployment
52
53 * Cluster-wide services like firewall and HA
54
55
56 Requirements
57 ------------
58
59 * All nodes must be in the same network as `corosync` uses IP Multicast
60 to communicate between nodes (also see
61 http://www.corosync.org[Corosync Cluster Engine]). Corosync uses UDP
62 ports 5404 and 5405 for cluster communication.
63 +
64 NOTE: Some switches do not support IP multicast by default and must be
65 manually enabled first.
66
67 * Date and time have to be synchronized.
68
69 * SSH tunnel on TCP port 22 between nodes is used.
70
71 * If you are interested in High Availability, you need to have at
72 least three nodes for reliable quorum. All nodes should have the
73 same version.
74
75 * We recommend a dedicated NIC for the cluster traffic, especially if
76 you use shared storage.
77
78 * Root password of a cluster node is required for adding nodes.
79
80 NOTE: It is not possible to mix Proxmox VE 3.x and earlier with
81 Proxmox VE 4.0 cluster nodes.
82
83
84 Preparing Nodes
85 ---------------
86
87 First, install {PVE} on all nodes. Make sure that each node is
88 installed with the final hostname and IP configuration. Changing the
89 hostname and IP is not possible after cluster creation.
90
91 Currently the cluster creation can either be done on the console (login via
92 `ssh`) or the API, which we have a GUI implementation for (__Datacenter ->
93 Cluster__).
94
95 While it's often common use to reference all other nodenames in `/etc/hosts`
96 with their IP this is not strictly necessary for a cluster, which normally uses
97 multicast, to work. It maybe useful as you then can connect from one node to
98 the other with SSH through the easier to remember node name.
99
100 [[pvecm_create_cluster]]
101 Create the Cluster
102 ------------------
103
104 Login via `ssh` to the first {pve} node. Use a unique name for your cluster.
105 This name cannot be changed later. The cluster name follows the same rules as
106 node names.
107
108 ----
109 hp1# pvecm create CLUSTERNAME
110 ----
111
112 CAUTION: The cluster name is used to compute the default multicast address.
113 Please use unique cluster names if you run more than one cluster inside your
114 network. To avoid human confusion, it is also recommended to choose different
115 names even if clusters do not share the cluster network.
116
117 To check the state of your cluster use:
118
119 ----
120 hp1# pvecm status
121 ----
122
123 Multiple Clusters In Same Network
124 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
125
126 It is possible to create multiple clusters in the same physical or logical
127 network. Each cluster must have a unique name, which is used to generate the
128 cluster's multicast group address. As long as no duplicate cluster names are
129 configured in one network segment, the different clusters won't interfere with
130 each other.
131
132 If multiple clusters operate in a single network it may be beneficial to setup
133 an IGMP querier and enable IGMP Snooping in said network. This may reduce the
134 load of the network significantly because multicast packets are only delivered
135 to endpoints of the respective member nodes.
136
137
138 [[pvecm_join_node_to_cluster]]
139 Adding Nodes to the Cluster
140 ---------------------------
141
142 Login via `ssh` to the node you want to add.
143
144 ----
145 hp2# pvecm add IP-ADDRESS-CLUSTER
146 ----
147
148 For `IP-ADDRESS-CLUSTER` use the IP from an existing cluster node.
149
150 CAUTION: A new node cannot hold any VMs, because you would get
151 conflicts about identical VM IDs. Also, all existing configuration in
152 `/etc/pve` is overwritten when you join a new node to the cluster. To
153 workaround, use `vzdump` to backup and restore to a different VMID after
154 adding the node to the cluster.
155
156 To check the state of cluster:
157
158 ----
159 # pvecm status
160 ----
161
162 .Cluster status after adding 4 nodes
163 ----
164 hp2# pvecm status
165 Quorum information
166 ~~~~~~~~~~~~~~~~~~
167 Date: Mon Apr 20 12:30:13 2015
168 Quorum provider: corosync_votequorum
169 Nodes: 4
170 Node ID: 0x00000001
171 Ring ID: 1928
172 Quorate: Yes
173
174 Votequorum information
175 ~~~~~~~~~~~~~~~~~~~~~~
176 Expected votes: 4
177 Highest expected: 4
178 Total votes: 4
179 Quorum: 2
180 Flags: Quorate
181
182 Membership information
183 ~~~~~~~~~~~~~~~~~~~~~~
184 Nodeid Votes Name
185 0x00000001 1 192.168.15.91
186 0x00000002 1 192.168.15.92 (local)
187 0x00000003 1 192.168.15.93
188 0x00000004 1 192.168.15.94
189 ----
190
191 If you only want the list of all nodes use:
192
193 ----
194 # pvecm nodes
195 ----
196
197 .List nodes in a cluster
198 ----
199 hp2# pvecm nodes
200
201 Membership information
202 ~~~~~~~~~~~~~~~~~~~~~~
203 Nodeid Votes Name
204 1 1 hp1
205 2 1 hp2 (local)
206 3 1 hp3
207 4 1 hp4
208 ----
209
210 [[adding-nodes-with-separated-cluster-network]]
211 Adding Nodes With Separated Cluster Network
212 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
213
214 When adding a node to a cluster with a separated cluster network you need to
215 use the 'ringX_addr' parameters to set the nodes address on those networks:
216
217 [source,bash]
218 ----
219 pvecm add IP-ADDRESS-CLUSTER -ring0_addr IP-ADDRESS-RING0
220 ----
221
222 If you want to use the Redundant Ring Protocol you will also want to pass the
223 'ring1_addr' parameter.
224
225
226 Remove a Cluster Node
227 ---------------------
228
229 CAUTION: Read carefully the procedure before proceeding, as it could
230 not be what you want or need.
231
232 Move all virtual machines from the node. Make sure you have no local
233 data or backups you want to keep, or save them accordingly.
234 In the following example we will remove the node hp4 from the cluster.
235
236 Log in to a *different* cluster node (not hp4), and issue a `pvecm nodes`
237 command to identify the node ID to remove:
238
239 ----
240 hp1# pvecm nodes
241
242 Membership information
243 ~~~~~~~~~~~~~~~~~~~~~~
244 Nodeid Votes Name
245 1 1 hp1 (local)
246 2 1 hp2
247 3 1 hp3
248 4 1 hp4
249 ----
250
251
252 At this point you must power off hp4 and
253 make sure that it will not power on again (in the network) as it
254 is.
255
256 IMPORTANT: As said above, it is critical to power off the node
257 *before* removal, and make sure that it will *never* power on again
258 (in the existing cluster network) as it is.
259 If you power on the node as it is, your cluster will be screwed up and
260 it could be difficult to restore a clean cluster state.
261
262 After powering off the node hp4, we can safely remove it from the cluster.
263
264 ----
265 hp1# pvecm delnode hp4
266 ----
267
268 If the operation succeeds no output is returned, just check the node
269 list again with `pvecm nodes` or `pvecm status`. You should see
270 something like:
271
272 ----
273 hp1# pvecm status
274
275 Quorum information
276 ~~~~~~~~~~~~~~~~~~
277 Date: Mon Apr 20 12:44:28 2015
278 Quorum provider: corosync_votequorum
279 Nodes: 3
280 Node ID: 0x00000001
281 Ring ID: 1992
282 Quorate: Yes
283
284 Votequorum information
285 ~~~~~~~~~~~~~~~~~~~~~~
286 Expected votes: 3
287 Highest expected: 3
288 Total votes: 3
289 Quorum: 3
290 Flags: Quorate
291
292 Membership information
293 ~~~~~~~~~~~~~~~~~~~~~~
294 Nodeid Votes Name
295 0x00000001 1 192.168.15.90 (local)
296 0x00000002 1 192.168.15.91
297 0x00000003 1 192.168.15.92
298 ----
299
300 If, for whatever reason, you want that this server joins the same
301 cluster again, you have to
302
303 * reinstall {pve} on it from scratch
304
305 * then join it, as explained in the previous section.
306
307 [[pvecm_separate_node_without_reinstall]]
308 Separate A Node Without Reinstalling
309 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
310
311 CAUTION: This is *not* the recommended method, proceed with caution. Use the
312 above mentioned method if you're unsure.
313
314 You can also separate a node from a cluster without reinstalling it from
315 scratch. But after removing the node from the cluster it will still have
316 access to the shared storages! This must be resolved before you start removing
317 the node from the cluster. A {pve} cluster cannot share the exact same
318 storage with another cluster, as storage locking doesn't work over cluster
319 boundary. Further, it may also lead to VMID conflicts.
320
321 Its suggested that you create a new storage where only the node which you want
322 to separate has access. This can be an new export on your NFS or a new Ceph
323 pool, to name a few examples. Its just important that the exact same storage
324 does not gets accessed by multiple clusters. After setting this storage up move
325 all data from the node and its VMs to it. Then you are ready to separate the
326 node from the cluster.
327
328 WARNING: Ensure all shared resources are cleanly separated! You will run into
329 conflicts and problems else.
330
331 First stop the corosync and the pve-cluster services on the node:
332 [source,bash]
333 ----
334 systemctl stop pve-cluster
335 systemctl stop corosync
336 ----
337
338 Start the cluster filesystem again in local mode:
339 [source,bash]
340 ----
341 pmxcfs -l
342 ----
343
344 Delete the corosync configuration files:
345 [source,bash]
346 ----
347 rm /etc/pve/corosync.conf
348 rm /etc/corosync/*
349 ----
350
351 You can now start the filesystem again as normal service:
352 [source,bash]
353 ----
354 killall pmxcfs
355 systemctl start pve-cluster
356 ----
357
358 The node is now separated from the cluster. You can deleted it from a remaining
359 node of the cluster with:
360 [source,bash]
361 ----
362 pvecm delnode oldnode
363 ----
364
365 If the command failed, because the remaining node in the cluster lost quorum
366 when the now separate node exited, you may set the expected votes to 1 as a workaround:
367 [source,bash]
368 ----
369 pvecm expected 1
370 ----
371
372 And the repeat the 'pvecm delnode' command.
373
374 Now switch back to the separated node, here delete all remaining files left
375 from the old cluster. This ensures that the node can be added to another
376 cluster again without problems.
377
378 [source,bash]
379 ----
380 rm /var/lib/corosync/*
381 ----
382
383 As the configuration files from the other nodes are still in the cluster
384 filesystem you may want to clean those up too. Remove simply the whole
385 directory recursive from '/etc/pve/nodes/NODENAME', but check three times that
386 you used the correct one before deleting it.
387
388 CAUTION: The nodes SSH keys are still in the 'authorized_key' file, this means
389 the nodes can still connect to each other with public key authentication. This
390 should be fixed by removing the respective keys from the
391 '/etc/pve/priv/authorized_keys' file.
392
393 Quorum
394 ------
395
396 {pve} use a quorum-based technique to provide a consistent state among
397 all cluster nodes.
398
399 [quote, from Wikipedia, Quorum (distributed computing)]
400 ____
401 A quorum is the minimum number of votes that a distributed transaction
402 has to obtain in order to be allowed to perform an operation in a
403 distributed system.
404 ____
405
406 In case of network partitioning, state changes requires that a
407 majority of nodes are online. The cluster switches to read-only mode
408 if it loses quorum.
409
410 NOTE: {pve} assigns a single vote to each node by default.
411
412 Cluster Network
413 ---------------
414
415 The cluster network is the core of a cluster. All messages sent over it have to
416 be delivered reliable to all nodes in their respective order. In {pve} this
417 part is done by corosync, an implementation of a high performance low overhead
418 high availability development toolkit. It serves our decentralized
419 configuration file system (`pmxcfs`).
420
421 [[cluster-network-requirements]]
422 Network Requirements
423 ~~~~~~~~~~~~~~~~~~~~
424 This needs a reliable network with latencies under 2 milliseconds (LAN
425 performance) to work properly. While corosync can also use unicast for
426 communication between nodes its **highly recommended** to have a multicast
427 capable network. The network should not be used heavily by other members,
428 ideally corosync runs on its own network.
429 *never* share it with network where storage communicates too.
430
431 Before setting up a cluster it is good practice to check if the network is fit
432 for that purpose.
433
434 * Ensure that all nodes are in the same subnet. This must only be true for the
435 network interfaces used for cluster communication (corosync).
436
437 * Ensure all nodes can reach each other over those interfaces, using `ping` is
438 enough for a basic test.
439
440 * Ensure that multicast works in general and a high package rates. This can be
441 done with the `omping` tool. The final "%loss" number should be < 1%.
442 +
443 [source,bash]
444 ----
445 omping -c 10000 -i 0.001 -F -q NODE1-IP NODE2-IP ...
446 ----
447
448 * Ensure that multicast communication works over an extended period of time.
449 This uncovers problems where IGMP snooping is activated on the network but
450 no multicast querier is active. This test has a duration of around 10
451 minutes.
452 +
453 [source,bash]
454 ----
455 omping -c 600 -i 1 -q NODE1-IP NODE2-IP ...
456 ----
457
458 Your network is not ready for clustering if any of these test fails. Recheck
459 your network configuration. Especially switches are notorious for having
460 multicast disabled by default or IGMP snooping enabled with no IGMP querier
461 active.
462
463 In smaller cluster its also an option to use unicast if you really cannot get
464 multicast to work.
465
466 Separate Cluster Network
467 ~~~~~~~~~~~~~~~~~~~~~~~~
468
469 When creating a cluster without any parameters the cluster network is generally
470 shared with the Web UI and the VMs and its traffic. Depending on your setup
471 even storage traffic may get sent over the same network. Its recommended to
472 change that, as corosync is a time critical real time application.
473
474 Setting Up A New Network
475 ^^^^^^^^^^^^^^^^^^^^^^^^
476
477 First you have to setup a new network interface. It should be on a physical
478 separate network. Ensure that your network fulfills the
479 <<cluster-network-requirements,cluster network requirements>>.
480
481 Separate On Cluster Creation
482 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
483
484 This is possible through the 'ring0_addr' and 'bindnet0_addr' parameter of
485 the 'pvecm create' command used for creating a new cluster.
486
487 If you have setup an additional NIC with a static address on 10.10.10.1/25
488 and want to send and receive all cluster communication over this interface
489 you would execute:
490
491 [source,bash]
492 ----
493 pvecm create test --ring0_addr 10.10.10.1 --bindnet0_addr 10.10.10.0
494 ----
495
496 To check if everything is working properly execute:
497 [source,bash]
498 ----
499 systemctl status corosync
500 ----
501
502 Afterwards, proceed as descripted in the section to
503 <<adding-nodes-with-separated-cluster-network,add nodes with a separated cluster network>>.
504
505 [[separate-cluster-net-after-creation]]
506 Separate After Cluster Creation
507 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
508
509 You can do this also if you have already created a cluster and want to switch
510 its communication to another network, without rebuilding the whole cluster.
511 This change may lead to short durations of quorum loss in the cluster, as nodes
512 have to restart corosync and come up one after the other on the new network.
513
514 Check how to <<edit-corosync-conf,edit the corosync.conf file>> first.
515 The open it and you should see a file similar to:
516
517 ----
518 logging {
519 debug: off
520 to_syslog: yes
521 }
522
523 nodelist {
524
525 node {
526 name: due
527 nodeid: 2
528 quorum_votes: 1
529 ring0_addr: due
530 }
531
532 node {
533 name: tre
534 nodeid: 3
535 quorum_votes: 1
536 ring0_addr: tre
537 }
538
539 node {
540 name: uno
541 nodeid: 1
542 quorum_votes: 1
543 ring0_addr: uno
544 }
545
546 }
547
548 quorum {
549 provider: corosync_votequorum
550 }
551
552 totem {
553 cluster_name: thomas-testcluster
554 config_version: 3
555 ip_version: ipv4
556 secauth: on
557 version: 2
558 interface {
559 bindnetaddr: 192.168.30.50
560 ringnumber: 0
561 }
562
563 }
564 ----
565
566 The first you want to do is add the 'name' properties in the node entries if
567 you do not see them already. Those *must* match the node name.
568
569 Then replace the address from the 'ring0_addr' properties with the new
570 addresses. You may use plain IP addresses or also hostnames here. If you use
571 hostnames ensure that they are resolvable from all nodes.
572
573 In my example I want to switch my cluster communication to the 10.10.10.1/25
574 network. So I replace all 'ring0_addr' respectively. I also set the bindnetaddr
575 in the totem section of the config to an address of the new network. It can be
576 any address from the subnet configured on the new network interface.
577
578 After you increased the 'config_version' property the new configuration file
579 should look like:
580
581 ----
582
583 logging {
584 debug: off
585 to_syslog: yes
586 }
587
588 nodelist {
589
590 node {
591 name: due
592 nodeid: 2
593 quorum_votes: 1
594 ring0_addr: 10.10.10.2
595 }
596
597 node {
598 name: tre
599 nodeid: 3
600 quorum_votes: 1
601 ring0_addr: 10.10.10.3
602 }
603
604 node {
605 name: uno
606 nodeid: 1
607 quorum_votes: 1
608 ring0_addr: 10.10.10.1
609 }
610
611 }
612
613 quorum {
614 provider: corosync_votequorum
615 }
616
617 totem {
618 cluster_name: thomas-testcluster
619 config_version: 4
620 ip_version: ipv4
621 secauth: on
622 version: 2
623 interface {
624 bindnetaddr: 10.10.10.1
625 ringnumber: 0
626 }
627
628 }
629 ----
630
631 Now after a final check whether all changed information is correct we save it
632 and see again the <<edit-corosync-conf,edit corosync.conf file>> section to
633 learn how to bring it in effect.
634
635 As our change cannot be enforced live from corosync we have to do an restart.
636
637 On a single node execute:
638 [source,bash]
639 ----
640 systemctl restart corosync
641 ----
642
643 Now check if everything is fine:
644
645 [source,bash]
646 ----
647 systemctl status corosync
648 ----
649
650 If corosync runs again correct restart corosync also on all other nodes.
651 They will then join the cluster membership one by one on the new network.
652
653 [[pvecm_rrp]]
654 Redundant Ring Protocol
655 ~~~~~~~~~~~~~~~~~~~~~~~
656 To avoid a single point of failure you should implement counter measurements.
657 This can be on the hardware and operating system level through network bonding.
658
659 Corosync itself offers also a possibility to add redundancy through the so
660 called 'Redundant Ring Protocol'. This protocol allows running a second totem
661 ring on another network, this network should be physically separated from the
662 other rings network to actually increase availability.
663
664 RRP On Cluster Creation
665 ~~~~~~~~~~~~~~~~~~~~~~~
666
667 The 'pvecm create' command provides the additional parameters 'bindnetX_addr',
668 'ringX_addr' and 'rrp_mode', can be used for RRP configuration.
669
670 NOTE: See the <<corosync-conf-glossary,glossary>> if you do not know what each parameter means.
671
672 So if you have two networks, one on the 10.10.10.1/24 and the other on the
673 10.10.20.1/24 subnet you would execute:
674
675 [source,bash]
676 ----
677 pvecm create CLUSTERNAME -bindnet0_addr 10.10.10.1 -ring0_addr 10.10.10.1 \
678 -bindnet1_addr 10.10.20.1 -ring1_addr 10.10.20.1
679 ----
680
681 RRP On Existing Clusters
682 ~~~~~~~~~~~~~~~~~~~~~~~~
683
684 You will take similar steps as described in
685 <<separate-cluster-net-after-creation,separating the cluster network>> to
686 enable RRP on an already running cluster. The single difference is, that you
687 will add `ring1` and use it instead of `ring0`.
688
689 First add a new `interface` subsection in the `totem` section, set its
690 `ringnumber` property to `1`. Set the interfaces `bindnetaddr` property to an
691 address of the subnet you have configured for your new ring.
692 Further set the `rrp_mode` to `passive`, this is the only stable mode.
693
694 Then add to each node entry in the `nodelist` section its new `ring1_addr`
695 property with the nodes additional ring address.
696
697 So if you have two networks, one on the 10.10.10.1/24 and the other on the
698 10.10.20.1/24 subnet, the final configuration file should look like:
699
700 ----
701 totem {
702 cluster_name: tweak
703 config_version: 9
704 ip_version: ipv4
705 rrp_mode: passive
706 secauth: on
707 version: 2
708 interface {
709 bindnetaddr: 10.10.10.1
710 ringnumber: 0
711 }
712 interface {
713 bindnetaddr: 10.10.20.1
714 ringnumber: 1
715 }
716 }
717
718 nodelist {
719 node {
720 name: pvecm1
721 nodeid: 1
722 quorum_votes: 1
723 ring0_addr: 10.10.10.1
724 ring1_addr: 10.10.20.1
725 }
726
727 node {
728 name: pvecm2
729 nodeid: 2
730 quorum_votes: 1
731 ring0_addr: 10.10.10.2
732 ring1_addr: 10.10.20.2
733 }
734
735 [...] # other cluster nodes here
736 }
737
738 [...] # other remaining config sections here
739
740 ----
741
742 Bring it in effect like described in the
743 <<edit-corosync-conf,edit the corosync.conf file>> section.
744
745 This is a change which cannot take live in effect and needs at least a restart
746 of corosync. Recommended is a restart of the whole cluster.
747
748 If you cannot reboot the whole cluster ensure no High Availability services are
749 configured and the stop the corosync service on all nodes. After corosync is
750 stopped on all nodes start it one after the other again.
751
752 Corosync Configuration
753 ----------------------
754
755 The `/etc/pve/corosync.conf` file plays a central role in {pve} cluster. It
756 controls the cluster member ship and its network.
757 For reading more about it check the corosync.conf man page:
758 [source,bash]
759 ----
760 man corosync.conf
761 ----
762
763 For node membership you should always use the `pvecm` tool provided by {pve}.
764 You may have to edit the configuration file manually for other changes.
765 Here are a few best practice tips for doing this.
766
767 [[edit-corosync-conf]]
768 Edit corosync.conf
769 ~~~~~~~~~~~~~~~~~~
770
771 Editing the corosync.conf file can be not always straight forward. There are
772 two on each cluster, one in `/etc/pve/corosync.conf` and the other in
773 `/etc/corosync/corosync.conf`. Editing the one in our cluster file system will
774 propagate the changes to the local one, but not vice versa.
775
776 The configuration will get updated automatically as soon as the file changes.
777 This means changes which can be integrated in a running corosync will take
778 instantly effect. So you should always make a copy and edit that instead, to
779 avoid triggering some unwanted changes by an in between safe.
780
781 [source,bash]
782 ----
783 cp /etc/pve/corosync.conf /etc/pve/corosync.conf.new
784 ----
785
786 Then open the Config file with your favorite editor, `nano` and `vim.tiny` are
787 preinstalled on {pve} for example.
788
789 NOTE: Always increment the 'config_version' number on configuration changes,
790 omitting this can lead to problems.
791
792 After making the necessary changes create another copy of the current working
793 configuration file. This serves as a backup if the new configuration fails to
794 apply or makes problems in other ways.
795
796 [source,bash]
797 ----
798 cp /etc/pve/corosync.conf /etc/pve/corosync.conf.bak
799 ----
800
801 Then move the new configuration file over the old one:
802 [source,bash]
803 ----
804 mv /etc/pve/corosync.conf.new /etc/pve/corosync.conf
805 ----
806
807 You may check with the commands
808 [source,bash]
809 ----
810 systemctl status corosync
811 journalctl -b -u corosync
812 ----
813
814 If the change could applied automatically. If not you may have to restart the
815 corosync service via:
816 [source,bash]
817 ----
818 systemctl restart corosync
819 ----
820
821 On errors check the troubleshooting section below.
822
823 Troubleshooting
824 ~~~~~~~~~~~~~~~
825
826 Issue: 'quorum.expected_votes must be configured'
827 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
828
829 When corosync starts to fail and you get the following message in the system log:
830
831 ----
832 [...]
833 corosync[1647]: [QUORUM] Quorum provider: corosync_votequorum failed to initialize.
834 corosync[1647]: [SERV ] Service engine 'corosync_quorum' failed to load for reason
835 'configuration error: nodelist or quorum.expected_votes must be configured!'
836 [...]
837 ----
838
839 It means that the hostname you set for corosync 'ringX_addr' in the
840 configuration could not be resolved.
841
842
843 Write Configuration When Not Quorate
844 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
845
846 If you need to change '/etc/pve/corosync.conf' on an node with no quorum, and you
847 know what you do, use:
848 [source,bash]
849 ----
850 pvecm expected 1
851 ----
852
853 This sets the expected vote count to 1 and makes the cluster quorate. You can
854 now fix your configuration, or revert it back to the last working backup.
855
856 This is not enough if corosync cannot start anymore. Here its best to edit the
857 local copy of the corosync configuration in '/etc/corosync/corosync.conf' so
858 that corosync can start again. Ensure that on all nodes this configuration has
859 the same content to avoid split brains. If you are not sure what went wrong
860 it's best to ask the Proxmox Community to help you.
861
862
863 [[corosync-conf-glossary]]
864 Corosync Configuration Glossary
865 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
866
867 ringX_addr::
868 This names the different ring addresses for the corosync totem rings used for
869 the cluster communication.
870
871 bindnetaddr::
872 Defines to which interface the ring should bind to. It may be any address of
873 the subnet configured on the interface we want to use. In general its the
874 recommended to just use an address a node uses on this interface.
875
876 rrp_mode::
877 Specifies the mode of the redundant ring protocol and may be passive, active or
878 none. Note that use of active is highly experimental and not official
879 supported. Passive is the preferred mode, it may double the cluster
880 communication throughput and increases availability.
881
882
883 Cluster Cold Start
884 ------------------
885
886 It is obvious that a cluster is not quorate when all nodes are
887 offline. This is a common case after a power failure.
888
889 NOTE: It is always a good idea to use an uninterruptible power supply
890 (``UPS'', also called ``battery backup'') to avoid this state, especially if
891 you want HA.
892
893 On node startup, the `pve-guests` service is started and waits for
894 quorum. Once quorate, it starts all guests which have the `onboot`
895 flag set.
896
897 When you turn on nodes, or when power comes back after power failure,
898 it is likely that some nodes boots faster than others. Please keep in
899 mind that guest startup is delayed until you reach quorum.
900
901
902 Guest Migration
903 ---------------
904
905 Migrating virtual guests to other nodes is a useful feature in a
906 cluster. There are settings to control the behavior of such
907 migrations. This can be done via the configuration file
908 `datacenter.cfg` or for a specific migration via API or command line
909 parameters.
910
911 It makes a difference if a Guest is online or offline, or if it has
912 local resources (like a local disk).
913
914 For Details about Virtual Machine Migration see the
915 xref:qm_migration[QEMU/KVM Migration Chapter]
916
917 For Details about Container Migration see the
918 xref:pct_migration[Container Migration Chapter]
919
920 Migration Type
921 ~~~~~~~~~~~~~~
922
923 The migration type defines if the migration data should be sent over an
924 encrypted (`secure`) channel or an unencrypted (`insecure`) one.
925 Setting the migration type to insecure means that the RAM content of a
926 virtual guest gets also transferred unencrypted, which can lead to
927 information disclosure of critical data from inside the guest (for
928 example passwords or encryption keys).
929
930 Therefore, we strongly recommend using the secure channel if you do
931 not have full control over the network and can not guarantee that no
932 one is eavesdropping to it.
933
934 NOTE: Storage migration does not follow this setting. Currently, it
935 always sends the storage content over a secure channel.
936
937 Encryption requires a lot of computing power, so this setting is often
938 changed to "unsafe" to achieve better performance. The impact on
939 modern systems is lower because they implement AES encryption in
940 hardware. The performance impact is particularly evident in fast
941 networks where you can transfer 10 Gbps or more.
942
943
944 Migration Network
945 ~~~~~~~~~~~~~~~~~
946
947 By default, {pve} uses the network in which cluster communication
948 takes place to send the migration traffic. This is not optimal because
949 sensitive cluster traffic can be disrupted and this network may not
950 have the best bandwidth available on the node.
951
952 Setting the migration network parameter allows the use of a dedicated
953 network for the entire migration traffic. In addition to the memory,
954 this also affects the storage traffic for offline migrations.
955
956 The migration network is set as a network in the CIDR notation. This
957 has the advantage that you do not have to set individual IP addresses
958 for each node. {pve} can determine the real address on the
959 destination node from the network specified in the CIDR form. To
960 enable this, the network must be specified so that each node has one,
961 but only one IP in the respective network.
962
963
964 Example
965 ^^^^^^^
966
967 We assume that we have a three-node setup with three separate
968 networks. One for public communication with the Internet, one for
969 cluster communication and a very fast one, which we want to use as a
970 dedicated network for migration.
971
972 A network configuration for such a setup might look as follows:
973
974 ----
975 iface eno1 inet manual
976
977 # public network
978 auto vmbr0
979 iface vmbr0 inet static
980 address 192.X.Y.57
981 netmask 255.255.250.0
982 gateway 192.X.Y.1
983 bridge_ports eno1
984 bridge_stp off
985 bridge_fd 0
986
987 # cluster network
988 auto eno2
989 iface eno2 inet static
990 address 10.1.1.1
991 netmask 255.255.255.0
992
993 # fast network
994 auto eno3
995 iface eno3 inet static
996 address 10.1.2.1
997 netmask 255.255.255.0
998 ----
999
1000 Here, we will use the network 10.1.2.0/24 as a migration network. For
1001 a single migration, you can do this using the `migration_network`
1002 parameter of the command line tool:
1003
1004 ----
1005 # qm migrate 106 tre --online --migration_network 10.1.2.0/24
1006 ----
1007
1008 To configure this as the default network for all migrations in the
1009 cluster, set the `migration` property of the `/etc/pve/datacenter.cfg`
1010 file:
1011
1012 ----
1013 # use dedicated migration network
1014 migration: secure,network=10.1.2.0/24
1015 ----
1016
1017 NOTE: The migration type must always be set when the migration network
1018 gets set in `/etc/pve/datacenter.cfg`.
1019
1020
1021 ifdef::manvolnum[]
1022 include::pve-copyright.adoc[]
1023 endif::manvolnum[]