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.
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.
No, there isn't (I just checked 1 hour ago). You can comment the bind-address in my.cnf:
If you want only 2 IPs, you will then have to use a firewall.
For MySql version 8.0.13 and above, you can specify a list of comma-separated IP addresses.
Relevant MySql documentation.
Remember to restart your MySQL instance after changing the config file.
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).
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: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 haveskip-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:
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:
No, you cannot. The page you link to clearly states:
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.
Source: https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_bind_address
I think your question is related to this bug http://bugs.mysql.com/bug.php?id=14979 The bug report suggest some workaround.
In my.cnf change (usually /etc/mysql/my.cnf on Linux or for windows check this answer.
to
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