Reputation: 110312
I have seen the use of:
[mysqld]
bind-address = 255.112.324.12
to allow remote access for a single IP. How would I allow remote access from mysql to all IPs?
Upvotes: 1
Views: 150
Reputation: 110312
Change the bind-address from localhost, 127.0.0.1
, to 0.0.0.0
:
# /etc/mysql/my.cnf
bind-address = 0.0.0.0
Upvotes: 1
Reputation: 8872
if you want to allow it for all IP's then I think you don't need a bind-address
at all? Try commenting it out
#bind-address = 255.112.324.12
Upvotes: 2