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