You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 30, 2022. It is now read-only.
My corosync.conf is created from the example file what is shipped with the package. The check is reported green even if the runtime check is in warning.
Running the documented command from the check on my system shows this: # cat /etc/corosync/corosync.conf | grep interface | wc -l 7
The issue here is the grep for the word interface. Since we are using udpu the interface section of corosync.conf doesn't need to be maintained. The important parts for a two ring configuration are:
rrp_mode: passive
transport: udpu
nodelist {
node {
...
My corosync.conf is created from the example file what is shipped with the package. The check is reported green even if the runtime check is in warning.
Running the documented command from the check on my system shows this:
# cat /etc/corosync/corosync.conf | grep interface | wc -l 7
The issue here is the grep for the word interface. Since we are using udpu the interface section of corosync.conf doesn't need to be maintained. The important parts for a two ring configuration are:
rrp_mode: passive
transport: udpu
nodelist {
node {
...
All of that information are independent from the interface section.
https://github.com/corosync/corosync/blob/needle/man/corosync.conf.5#L77-L81
I would suggest to change to search string and check the nodelist section instead.
The text was updated successfully, but these errors were encountered: