How to bind MySQL server to more than one IP address?

Scenario / Questions

Is there a secret way to bind MySQL to more than one IP address?

As far as I can see the bind-address parameter in the my.cnf does not support more than one IP and you can’t have it more than once.

Find below all possible solutions or suggestions for the above questions..

Suggestion: 1:

No, there isn’t (I just checked 1 hour ago). You can comment the bind-address in my.cnf:

#skip-networking
#bind-address                   = 127.0.0.1

If you want only 2 IPs, you will then have to use a firewall.

Suggestion: 2:

Binding to 127.0.0.x won’t make it available to all the devices, it will make it available locally only. If you wish to make it available to all the interfaces, you should use 0.0.0.0. If you wish to access it from more than one, but less than all the interfaces, you should bind to 0.0.0.0 and firewall off the interfaces you don’t want to be accessed through.

Also, as a second layer of security, you should make sure that all your MySQL users have host field set to something other than % (ie any host).

Suggestion: 3:

You can’t bind to more than one IP address, but you can bind to all available IP addresses instead. If so, just use 0.0.0.0 for a binding address in your MySQL configuration file (e.g. /etc/mysql/my.cnf) as follows:

bind-address    = 0.0.0.0

If the address is 0.0.0.0, the server accepts TCP/IP connections on all server host IPv4 interfaces.

Furthermore if the address is ::, the server accepts TCP/IP connections on all server host IPv4 and IPv6 interfaces. Use this address to permit both IPv4 and IPv6 connections on all server interfaces.

Or you can simply comment out bind-address= altogether, so it will bind to all addresses. But make sure that you don’t have skip-networking enabled in your my.cnf if you want to allow remote connections as well (Read more: MySQL: Allow both remote AND local connections).

After changing the binding address, don’t forget to restart your MySQL server by:

sudo service mysql restart

Eventually you can consider to run multiple instances of MySQL on a single machine (different ports) with Master/Slave replication. Replication enables data from one MySQL database server (the master) to be copied to one or more MySQL database servers (the slaves).

Read more:

Suggestion: 4:

No, you cannot. The page you link to clearly states:

The IP address to bind to. Only one address can be selected. If this option is specified multiple times, the last address given is used.

If no address or 0.0.0.0 is specified, the server listens on all interfaces.

Suggestion: 5:

As others have answered, there isn’t a way yet to selectively bind to more than one interface.

Linux has some TCP tools which make it possible. In this setup, you’d configure mysql to listen on 127.0.0.1 and then use redir to expose it on arbitrary interfaces.

I’ve been using this to help a virtual box guest see mysql installed on the host machine.

redir --laddr=192.168.33.1 --lport=3306 --caddr=127.0.0.1 --cport=3306 &

Suggestion: 6:

Prior to MySQL 8.0.13, –bind-address accepts a single address value,
which may specify a single non-wildcard IP address or host name, or
one of the wildcard address formats that permit listening on multiple
network interfaces (*, 0.0.0.0, or ::).

As of MySQL 8.0.13, –bind-address accepts a single value as just
described, or a list of comma-separated values. When the option names
a list of multiple values, each value must specify a single
non-wildcard IP address or host name; none can specify a wildcard
address format (*, 0.0.0.0, or ::).

Source: https://dev.mysql.com/doc/refman/8.0/en/server-options.html

Suggestion: 7:

I think your question is related to this bug http://bugs.mysql.com/bug.php?id=14979
The bug report suggest some workaround.

Suggestion: 8:

In my.cnf change (usually /etc/mysql/my.cnf on Linux or for windows check this answer.

bind-address                   = 127.0.0.1

to

bind-address                   = 0.0.0.0

Then restart mysql (on Ubuntu service mysql restart) on windows usually service restart thru Win+R services.msc

0.0.0.0 tells it to bind to all available IP’s with port also given in my.cnf

Disclaimer: This has been sourced from a third party syndicated feed through internet. We are not responsibility or liability for its dependability, trustworthiness, reliability and data of the text. We reserves the sole right to alter, delete or remove (without notice) the content in its absolute discretion for any reason whatsoever.

Source: How to bind MySQL server to more than one IP address?

Design a site like this with WordPress.com
Get started