Allow galera to listen on v4/v6

While working on https://review.openstack.org/#/c/320542/, galera
was found to be listening only on IPv6 addresses. Connections to
::1 worked fine, but connections to 127.0.0.1 failed.

This patch ensures that galera is listening on all IPv4 and IPv6
addresses.

Closes-bug: 1620793
Change-Id: I1ddae03343b6fe9542b6118810cc55108d4417c0
This commit is contained in:
Major Hayden 2016-09-06 14:36:03 -05:00
parent b1ed69fe75
commit 352cbd131d

View File

@ -28,6 +28,7 @@ collation-server = utf8_general_ci
init-connect = 'SET NAMES utf8'
character-set-server = utf8
datadir = /var/lib/mysql
bind-address = ::
{% if galera_server_id is defined %}
server-id = {{ galera_server_id }}
{% endif %}