Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Not a Bug
-
10.1.8, 10.1.13
-
Ubuntu Xenial, Ubuntu Trusty
Description
According to https://mariadb.com/kb/en/mariadb/does-mariadb-support-ipv6/, ``The Galera wsrep_node_address setting has accepted ipv6 since MariaDB 10.1.8''.
However, setting
wsrep_cluster_address="gcomm://fd00::1,fd00::2,fd00::3"
will result in
[Warning] WSREP: Failed to resolve tcp://fd00::1
[Warning] WSREP: Failed to resolve tcp://fd00::2
[Warning] WSREP: Failed to resolve tcp://fd00::3
Note that this is a parsing problem--substituting the aformentioned addresses with names will work:
wsrep_cluster_address="gcomm://galera01.vserver01,galera01.vserver02,galera01.vserver03"
(The latter, however, especially in the case of local addresses, requires you to use, e.g., unbound to map those names to addresses in the first place.)
Attachments
Issue Links
- relates to
-
MDEV-11314 MariaDB Galera Cluister issue with internal IPv6 GCOMM network
-
- Closed
-
-
MDEV-18797 Make mariabackup/xtrabackup-v2 SST script autodetect ipv6 addresses and add relevant socat option
-
- Closed
-
galera_ipv6_mariabackup.cnf added to the MariaDB automated tests with
MDEV-18379shows IPv6 addresses in wsrep_cluster_address enclosed in square brackets. See here:https://github.com/MariaDB/server/blob/4aea6b3e3f3fd1a8a2526bc40fc5e85e571d8242/mysql-test/suite/galera_3nodes/t/galera_ipv6_mariabackup.cnf#L15
Also see here:
https://en.wikipedia.org/wiki/IPv6_address#Literal_IPv6_addresses_in_network_resource_identifiers
Does it work for you if you enclose the addresses in square brackets?