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