corosync.conf.5 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653
  1. .\"/*
  2. .\" * Copyright (c) 2005 MontaVista Software, Inc.
  3. .\" * Copyright (c) 2006-2012 Red Hat, Inc.
  4. .\" *
  5. .\" * All rights reserved.
  6. .\" *
  7. .\" * Author: Steven Dake (sdake@redhat.com)
  8. .\" *
  9. .\" * This software licensed under BSD license, the text of which follows:
  10. .\" *
  11. .\" * Redistribution and use in source and binary forms, with or without
  12. .\" * modification, are permitted provided that the following conditions are met:
  13. .\" *
  14. .\" * - Redistributions of source code must retain the above copyright notice,
  15. .\" * this list of conditions and the following disclaimer.
  16. .\" * - Redistributions in binary form must reproduce the above copyright notice,
  17. .\" * this list of conditions and the following disclaimer in the documentation
  18. .\" * and/or other materials provided with the distribution.
  19. .\" * - Neither the name of the MontaVista Software, Inc. nor the names of its
  20. .\" * contributors may be used to endorse or promote products derived from this
  21. .\" * software without specific prior written permission.
  22. .\" *
  23. .\" * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  24. .\" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25. .\" * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26. .\" * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  27. .\" * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  28. .\" * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  29. .\" * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  30. .\" * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  31. .\" * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  32. .\" * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  33. .\" * THE POSSIBILITY OF SUCH DAMAGE.
  34. .\" */
  35. .TH COROSYNC_CONF 5 2012-10-10 "corosync Man Page" "Corosync Cluster Engine Programmer's Manual"
  36. .SH NAME
  37. corosync.conf - corosync executive configuration file
  38. .SH SYNOPSIS
  39. /etc/corosync/corosync.conf
  40. .SH DESCRIPTION
  41. The corosync.conf instructs the corosync executive about various parameters
  42. needed to control the corosync executive. Empty lines and lines starting with
  43. # character are ignored. The configuration file consists of bracketed top level
  44. directives. The possible directive choices are:
  45. .TP
  46. totem { }
  47. This top level directive contains configuration options for the totem protocol.
  48. .TP
  49. logging { }
  50. This top level directive contains configuration options for logging.
  51. .TP
  52. quorum { }
  53. This top level directive contains configuration options for quorum.
  54. .TP
  55. nodelist { }
  56. This top level directive contains configuration options for nodes in cluster.
  57. .TP
  58. qb { }
  59. This top level directive contains configuration options related to libqb.
  60. .PP
  61. The
  62. .B interface sub-directive of totem is optional for UDP and knet transports.
  63. For knet, multiple interface subsections define parameters for each knet link on the
  64. system.
  65. For UDP, there should be just one interface section that defines the multicast or
  66. broadcast options for the link.
  67. For UDPU an interface section is not needed and it is recommended that the nodelist
  68. is used to define cluster nodes.
  69. .TP
  70. linknumber
  71. This specifies the link number for the interface. When using the knet
  72. protocol, each interface should specify separate link numbers to uniquely
  73. identify to the membership protocol which interface to use for which link.
  74. The linknumber must start at 0. For UDP the only supported linknumber is 0.
  75. .TP
  76. knet_link_priority
  77. This specifies the priority for the link when knet is used in 'passive'
  78. mode. (see link_mode below)
  79. .TP
  80. knet_ping_interval
  81. This specifies the interval between knet link pings.
  82. (default 1000 ms)
  83. .TP
  84. knet_ping_timeout
  85. If no ping is received within this time, the knet link is declared dead.
  86. (default 2000 ms)
  87. .TP
  88. knet_ping_precision
  89. How many values of latency are used to calculate
  90. the average link latency. (default 2048 samples)
  91. .TP
  92. knet_pong_count
  93. How many valid ping/pongs before a link is marked UP. (default 5)
  94. .TP
  95. bindnetaddr (udp only)
  96. This specifies the network address the corosync executive should bind
  97. to when using udp.
  98. bindnetaddr (udp only)
  99. should be an IP address configured on the system, or a network
  100. address.
  101. For example, if the local interface is 192.168.5.92 with netmask
  102. 255.255.255.0, you should set bindnetaddr to 192.168.5.92 or 192.168.5.0.
  103. If the local interface is 192.168.5.92 with netmask 255.255.255.192,
  104. set bindnetaddr to 192.168.5.92 or 192.168.5.64, and so forth.
  105. This may also be an IPV6 address, in which case IPV6 networking will be used.
  106. In this case, the exact address must be specified and there is no automatic
  107. selection of the network interface within a specific subnet as with IPv4.
  108. If IPv6 networking is used, the nodeid field in nodelist must be specified.
  109. .TP
  110. broadcast (udp only)
  111. This is optional and can be set to yes. If it is set to yes, the broadcast
  112. address will be used for communication. If this option is set, mcastaddr
  113. should not be set.
  114. .TP
  115. mcastaddr (udp only)
  116. This is the multicast address used by corosync executive. The default
  117. should work for most networks, but the network administrator should be queried
  118. about a multicast address to use. Avoid 224.x.x.x because this is a "config"
  119. multicast address.
  120. This may also be an IPV6 multicast address, in which case IPV6 networking
  121. will be used. If IPv6 networking is used, the nodeid field in nodelist must
  122. be specified.
  123. It's not necessary to use this option if cluster_name option is used. If both options
  124. are used, mcastaddr has higher priority.
  125. .TP
  126. mcastport (udp only)
  127. This specifies the UDP port number. It is possible to use the same multicast
  128. address on a network with the corosync services configured for different
  129. UDP ports.
  130. Please note corosync uses two UDP ports mcastport (for mcast receives) and
  131. mcastport - 1 (for mcast sends).
  132. If you have multiple clusters on the same network using the same mcastaddr
  133. please configure the mcastports with a gap.
  134. .TP
  135. ttl (udp only)
  136. This specifies the Time To Live (TTL). If you run your cluster on a routed
  137. network then the default of "1" will be too small. This option provides
  138. a way to increase this up to 255. The valid range is 0..255.
  139. .PP
  140. .PP
  141. Within the
  142. .B totem
  143. directive, there are seven configuration options of which one is required,
  144. five are optional, and one is required when IPV6 is configured in the interface
  145. subdirective. The required directive controls the version of the totem
  146. configuration. The optional option unless using IPV6 directive controls
  147. identification of the processor. The optional options control secrecy and
  148. authentication, the network mode of operation and maximum network MTU
  149. field.
  150. .TP
  151. version
  152. This specifies the version of the configuration file. Currently the only
  153. valid version for this directive is 2.
  154. .PP
  155. clear_node_high_bit
  156. This configuration option is optional and is only relevant when no nodeid is
  157. specified. Some corosync clients require a signed 32 bit nodeid that is greater
  158. than zero however by default corosync uses all 32 bits of the IPv4 address space
  159. when generating a nodeid. Set this option to yes to force the high bit to be
  160. zero and therefor ensure the nodeid is a positive signed 32 bit integer.
  161. WARNING: The clusters behavior is undefined if this option is enabled on only
  162. a subset of the cluster (for example during a rolling upgrade).
  163. .TP
  164. crypto_hash
  165. This specifies which HMAC authentication should be used to authenticate all
  166. messages. Valid values are none (no authentication), md5, sha1, sha256,
  167. sha384 and sha512. Encrypted transmission is only supported for
  168. the knet transport.
  169. The default is sha1.
  170. .TP
  171. crypto_cipher
  172. This specifies which cipher should be used to encrypt all messages.
  173. Valid values are none (no encryption), aes256, aes192, aes128 and 3des.
  174. Enabling crypto_cipher, requires also enabling of crypto_hash. Encrypted
  175. transmission is only supported for the knet transport.
  176. The default is aes256.
  177. .TP
  178. link_mode
  179. This specifies the Kronosnet mode, which may be passive, active, or
  180. rr (round-robin).
  181. .B passive:
  182. the active link with the lowest priority will be used. If one or more
  183. links share the same priority the one with the lowest link ID will
  184. be used.
  185. .B active:
  186. All active links will be used simultaneously to send traffic.
  187. link priority is ignored.
  188. .B rr:
  189. Round-Robin policy. Each packet will be sent to the next active link in
  190. order.
  191. If only one interface directive is specified, passive is automatically chosen.
  192. The maximum number of interface directives that is allowed with Kronosnet
  193. is 8. For other transports it is 1.
  194. When using multiple interfaces, make sure to use different multicast
  195. address/port (port for same address must differ by at least two) pair
  196. for each interface (this is checked by parser).
  197. .TP
  198. netmtu
  199. This specifies the network maximum transmit unit. To set this value beyond
  200. 1500, the regular frame MTU, requires ethernet devices that support large, or
  201. also called jumbo, frames. If any device in the network doesn't support large
  202. frames, the protocol will not operate properly. The hosts must also have their
  203. mtu size set from 1500 to whatever frame size is specified here.
  204. Please note while some NICs or switches claim large frame support, they support
  205. 9000 MTU as the maximum frame size including the IP header. Setting the netmtu
  206. and host MTUs to 9000 will cause totem to use the full 9000 bytes of the frame.
  207. Then Linux will add a 18 byte header moving the full frame size to 9018. As a
  208. result some hardware will not operate properly with this size of data. A netmtu
  209. of 8982 seems to work for the few large frame devices that have been tested.
  210. Some manufacturers claim large frame support when in fact they support frame
  211. sizes of 4500 bytes.
  212. When sending multicast traffic, if the network frequently reconfigures, chances are
  213. that some device in the network doesn't support large frames.
  214. Choose hardware carefully if intending to use large frame support.
  215. The default is 1500.
  216. .TP
  217. transport
  218. This directive controls the transport mechanism used.
  219. The default is knet. The transport type can also be set to udpu or udp.
  220. Only knet allows crypto or multiple interfaces per node.
  221. .TP
  222. cluster_name
  223. This specifies the name of cluster and it's used for automatic generating
  224. of multicast address.
  225. .TP
  226. config_version
  227. This specifies version of config file. This is converted to unsigned 64-bit int.
  228. By default it's 0. Option is used to prevent joining old nodes with not
  229. up-to-date configuration. If value is not 0, and node is going for first time
  230. (only for first time, join after split doesn't follow this rules)
  231. from single-node membership to multiple nodes membership, other nodes
  232. config_versions are collected. If current node config_version is not
  233. equal to highest of collected versions, corosync is terminated.
  234. .TP
  235. ip_version
  236. Specifies version of IP to use for communication. Value can be one of
  237. ipv4 or ipv6. Default (if unspecified) is ipv4.
  238. Within the
  239. .B totem
  240. directive, there are several configuration options which are used to control
  241. the operation of the protocol. It is generally not recommended to change any
  242. of these values without proper guidance and sufficient testing. Some networks
  243. may require larger values if suffering from frequent reconfigurations. Some
  244. applications may require faster failure detection times which can be achieved
  245. by reducing the token timeout.
  246. .TP
  247. token
  248. This timeout is used directly or as a base for real token timeout calculation (explained in
  249. .B token_coefficient
  250. section). Token timeout specifies in milliseconds until a token loss is declared after not
  251. receiving a token. This is the time spent detecting a failure of a processor
  252. in the current configuration. Reforming a new configuration takes about 50
  253. milliseconds in addition to this timeout.
  254. For real token timeout used by totem it's possible to read cmap value of
  255. .B runtime.config.token
  256. key.
  257. The default is 1000 milliseconds.
  258. .TP
  259. token_coefficient
  260. This value is used only when
  261. .B nodelist
  262. section is specified and contains at least 3 nodes. If so, real token timeout
  263. is then computed as token + (number_of_nodes - 2) * token_coefficient.
  264. This allows cluster to scale without manually changing token timeout
  265. every time new node is added. This value can be set to 0 resulting
  266. in effective removal of this feature.
  267. The default is 650 milliseconds.
  268. .TP
  269. token_retransmit
  270. This timeout specifies in milliseconds after how long before receiving a token
  271. the token is retransmitted. This will be automatically calculated if token
  272. is modified. It is not recommended to alter this value without guidance from
  273. the corosync community.
  274. The default is 238 milliseconds.
  275. .TP
  276. hold
  277. This timeout specifies in milliseconds how long the token should be held by
  278. the representative when the protocol is under low utilization. It is not
  279. recommended to alter this value without guidance from the corosync community.
  280. The default is 180 milliseconds.
  281. .TP
  282. token_retransmits_before_loss_const
  283. This value identifies how many token retransmits should be attempted before
  284. forming a new configuration. If this value is set, retransmit and hold will
  285. be automatically calculated from retransmits_before_loss and token.
  286. The default is 4 retransmissions.
  287. .TP
  288. join
  289. This timeout specifies in milliseconds how long to wait for join messages in
  290. the membership protocol.
  291. The default is 50 milliseconds.
  292. .TP
  293. send_join
  294. This timeout specifies in milliseconds an upper range between 0 and send_join
  295. to wait before sending a join message. For configurations with less than
  296. 32 nodes, this parameter is not necessary. For larger rings, this parameter
  297. is necessary to ensure the NIC is not overflowed with join messages on
  298. formation of a new ring. A reasonable value for large rings (128 nodes) would
  299. be 80msec. Other timer values must also change if this value is changed. Seek
  300. advice from the corosync mailing list if trying to run larger configurations.
  301. The default is 0 milliseconds.
  302. .TP
  303. consensus
  304. This timeout specifies in milliseconds how long to wait for consensus to be
  305. achieved before starting a new round of membership configuration. The minimum
  306. value for consensus must be 1.2 * token. This value will be automatically
  307. calculated at 1.2 * token if the user doesn't specify a consensus value.
  308. For two node clusters, a consensus larger than the join timeout but less than
  309. token is safe. For three node or larger clusters, consensus should be larger
  310. than token. There is an increasing risk of odd membership changes, which still
  311. guarantee virtual synchrony, as node count grows if consensus is less than
  312. token.
  313. The default is 1200 milliseconds.
  314. .TP
  315. merge
  316. This timeout specifies in milliseconds how long to wait before checking for
  317. a partition when no multicast traffic is being sent. If multicast traffic
  318. is being sent, the merge detection happens automatically as a function of
  319. the protocol.
  320. The default is 200 milliseconds.
  321. .TP
  322. downcheck
  323. This timeout specifies in milliseconds how long to wait before checking
  324. that a network interface is back up after it has been downed.
  325. The default is 1000 milliseconds.
  326. .TP
  327. fail_recv_const
  328. This constant specifies how many rotations of the token without receiving any
  329. of the messages when messages should be received may occur before a new
  330. configuration is formed.
  331. The default is 2500 failures to receive a message.
  332. .TP
  333. seqno_unchanged_const
  334. This constant specifies how many rotations of the token without any multicast
  335. traffic should occur before the hold timer is started.
  336. The default is 30 rotations.
  337. .TP
  338. heartbeat_failures_allowed
  339. [HeartBeating mechanism]
  340. Configures the optional HeartBeating mechanism for faster failure detection. Keep in
  341. mind that engaging this mechanism in lossy networks could cause faulty loss declaration
  342. as the mechanism relies on the network for heartbeating.
  343. So as a rule of thumb use this mechanism if you require improved failure in low to
  344. medium utilized networks.
  345. This constant specifies the number of heartbeat failures the system should tolerate
  346. before declaring heartbeat failure e.g 3. Also if this value is not set or is 0 then the
  347. heartbeat mechanism is not engaged in the system and token rotation is the method
  348. of failure detection
  349. The default is 0 (disabled).
  350. .TP
  351. max_network_delay
  352. [HeartBeating mechanism]
  353. This constant specifies in milliseconds the approximate delay that your network takes
  354. to transport one packet from one machine to another. This value is to be set by system
  355. engineers and please don't change if not sure as this effects the failure detection
  356. mechanism using heartbeat.
  357. The default is 50 milliseconds.
  358. .TP
  359. window_size
  360. This constant specifies the maximum number of messages that may be sent on one
  361. token rotation. If all processors perform equally well, this value could be
  362. large (300), which would introduce higher latency from origination to delivery
  363. for very large rings. To reduce latency in large rings(16+), the defaults are
  364. a safe compromise. If 1 or more slow processor(s) are present among fast
  365. processors, window_size should be no larger than 256000 / netmtu to avoid
  366. overflow of the kernel receive buffers. The user is notified of this by
  367. the display of a retransmit list in the notification logs. There is no loss
  368. of data, but performance is reduced when these errors occur.
  369. The default is 50 messages.
  370. .TP
  371. max_messages
  372. This constant specifies the maximum number of messages that may be sent by one
  373. processor on receipt of the token. The max_messages parameter is limited to
  374. 256000 / netmtu to prevent overflow of the kernel transmit buffers.
  375. The default is 17 messages.
  376. .TP
  377. miss_count_const
  378. This constant defines the maximum number of times on receipt of a token
  379. a message is checked for retransmission before a retransmission occurs. This
  380. parameter is useful to modify for switches that delay multicast packets
  381. compared to unicast packets. The default setting works well for nearly all
  382. modern switches.
  383. The default is 5 messages.
  384. .TP
  385. knet_pmtud_interval
  386. How often the knet PMTUd runs to look for network MTU changes.
  387. Value in seconds, default: 60
  388. .PP
  389. Within the
  390. .B logging
  391. directive, there are several configuration options which are all optional.
  392. .PP
  393. The following 3 options are valid only for the top level logging directive:
  394. .TP
  395. timestamp
  396. This specifies that a timestamp is placed on all log messages.
  397. The default is off.
  398. .TP
  399. fileline
  400. This specifies that file and line should be printed.
  401. The default is off.
  402. .TP
  403. function_name
  404. This specifies that the code function name should be printed.
  405. The default is off.
  406. .PP
  407. The following options are valid both for top level logging directive
  408. and they can be overridden in logger_subsys entries.
  409. .TP
  410. to_stderr
  411. .TP
  412. to_logfile
  413. .TP
  414. to_syslog
  415. These specify the destination of logging output. Any combination of
  416. these options may be specified. Valid options are
  417. .B yes
  418. and
  419. .B no.
  420. The default is syslog and stderr.
  421. Please note, if you are using to_logfile and want to rotate the file, use logrotate(8)
  422. with the option
  423. .B
  424. copytruncate.
  425. eg.
  426. .ne 18
  427. .RS
  428. .nf
  429. .ft CW
  430. /var/log/corosync.log {
  431. missingok
  432. compress
  433. notifempty
  434. daily
  435. rotate 7
  436. copytruncate
  437. }
  438. .ft
  439. .fi
  440. .RE
  441. .TP
  442. logfile
  443. If the
  444. .B to_logfile
  445. directive is set to
  446. .B yes
  447. , this option specifies the pathname of the log file.
  448. No default.
  449. .TP
  450. logfile_priority
  451. This specifies the logfile priority for this particular subsystem. Ignored if debug is on.
  452. Possible values are: alert, crit, debug (same as debug = on), emerg, err, info, notice, warning.
  453. The default is: info.
  454. .TP
  455. syslog_facility
  456. This specifies the syslog facility type that will be used for any messages
  457. sent to syslog. options are daemon, local0, local1, local2, local3, local4,
  458. local5, local6 & local7.
  459. The default is daemon.
  460. .TP
  461. syslog_priority
  462. This specifies the syslog level for this particular subsystem. Ignored if debug is on.
  463. Possible values are: alert, crit, debug (same as debug = on), emerg, err, info, notice, warning.
  464. The default is: info.
  465. .TP
  466. debug
  467. This specifies whether debug output is logged for this particular logger. Also can contain
  468. value trace, what is highest level of debug information.
  469. The default is off.
  470. .PP
  471. Within the
  472. .B logging
  473. directive, logger_subsys directives are optional.
  474. .PP
  475. Within the
  476. .B logger_subsys
  477. sub-directive, all of the above logging configuration options are valid and
  478. can be used to override the default settings.
  479. The subsys entry, described below, is mandatory to identify the subsystem.
  480. .TP
  481. subsys
  482. This specifies the subsystem identity (name) for which logging is specified. This is the
  483. name used by a service in the log_init() call. E.g. 'CPG'. This directive is
  484. required.
  485. .PP
  486. Within the
  487. .B quorum
  488. directive it is possible to specify the quorum algorithm to use with the
  489. .TP
  490. provider
  491. directive. At the time of writing only corosync_votequorum is supported.
  492. See votequorum(5) for configuration options.
  493. .PP
  494. Within the
  495. .B nodelist
  496. directive it is possible to specify specific information about nodes in cluster. Directive
  497. can contain only
  498. .B node
  499. sub-directive, which specifies every node that should be a member of the membership, and where
  500. non-default options are needed. Every node must have at least ring0_addr field filled.
  501. Every node that should be a member of the membership must be specified.
  502. Possible options are:
  503. .TP
  504. ringX_addr
  505. This specifies IP address of one of the nodes. X is link number.
  506. .TP
  507. nodeid
  508. This configuration option is required for each node. It is a 32 bit value
  509. specifying the node identifier delivered to the
  510. cluster membership service. The node identifier value of zero is
  511. reserved and should not be used.
  512. .PP
  513. Within the
  514. .B qb
  515. directive it is possible to specify options for libqb.
  516. Possible option is:
  517. .TP
  518. ipc_type
  519. This specifies type of IPC to use. Can be one of native (default), shm and socket.
  520. Native means one of shm or socket, depending on what is supported by OS. On systems
  521. with support for both, SHM is selected. SHM is generally faster, but need to allocate
  522. ring buffer file in /dev/shm.
  523. .SH "FILES"
  524. .TP
  525. /etc/corosync/corosync.conf
  526. The corosync executive configuration file.
  527. .SH "SEE ALSO"
  528. .BR corosync_overview (8),
  529. .BR votequorum (5),
  530. .BR corosync-qdevice (8),
  531. .BR logrotate (8)
  532. .PP