TL;DR


  1. group_replication_ip_allowlist は my.cnf で設定できない
  2. SET GLOBAL group_replication_ip_allowlist で Unknown system variables で怒られるときは一度 addInstance する

以下、Unknown system variables の話

一度 addInstance で怒られる場合


mysql> STOP GROUP_REPLICATION;
Query OK, 0 rows affected (3.58 sec)

mysql> SET GLOBAL group_replication_ip_allowlist="192.168.20.0/24,172.16.0.0/24";
Query OK, 0 rows affected (0.00 sec)

問題なし

Group Replication を一度も実行したことがない場合


mysql> SET GLOBAL group_replication_ip_allowlist="192.168.20.0/24,172.16.0.0/24";
ERROR 1193 (HY000): Unknown system variable 'group_replication_ip_allowlist'