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:
Note: « 1 hour ago » is now more than 15 years ago.
#skip-networking
#bind-address = 127.0.0.1
If you want only 2 IPs, you will then have to use a firewall.
For MySql version 8.0.13 and above, and MariaDB version 10.11 and above, you can specify a list of comma-separated IP addresses.
bind-address = 10.0.0.1,10.0.1.1,10.0.2.1
Relevant MariaDB documentation.
Thank you @KurtFitzner for the MariaDB info.
Remember to restart your MySQL instance after changing the config file.
socket and bind-address options.
– danorton
Mar 30 '12 at 17:04
mysql -h localhost etc... and mysql -h <IP address> etc... to connect to the server (assuming mysql.users table is up to date http://stackoverflow.com/questions/36603973/mysql-not-honouring-bind-address ). This seems at odds with the this answer, and the other answers and comments.
– AJP
Apr 13 '16 at 16:56
127.0.0.1 then the client can connect to 127.0.0.1 or localhost. If the server is set to bind-address a different interface then the client can not connect to 127.0.0.1 but ** can still ** connect to the server through localhost. Hence my comment. Apologies if I have misunderstood your comment.
– AJP
Apr 14 '16 at 14:51
netstat does show a socket connection on my machine: unix 2 [ ACC ] STREAM LISTENING 175927 31481/mysqld /var/run/mysqld/mysqld.sock I wonder how you'd figure out if specifying -h localhost was using the socket? [not expecting an answer].
– AJP
Apr 15 '16 at 11:46
bind-address.
– obe
Aug 25 '20 at 11:40
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).
in one terminal: nc -l 0.0.0.0 4321
and in a second terminal: telnet
And it will connect to it.
– Grey Panther May 18 '10 at 16:49INADDR_ANY (0.0.0.0) means any address for binding;?
– ebyrob
Jul 24 '13 at 17:06
/etc/mysql/conf.d/bindaddress.cnf file with content [mysqld] \n bind-address = 0.0.0.0
– Yves Martin
Aug 16 '13 at 12:07
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:
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 &
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-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.
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