1

我已经看到了以下用途:

[mysqld]
bind-address    = 255.112.324.12

允许远程访问单个 IP。我将如何允许从 mysql 远程访问所有 IP?

4

2 回答 2

2

如果您想为所有IP允许它,那么我认为您根本不需要bind-address?尝试将其注释掉

#bind-address    = 255.112.324.12
于 2013-04-13T02:09:49.850 回答
1

将绑定地址从 localhost, 127.0.0.1, 更改为0.0.0.0

# /etc/mysql/my.cnf
bind-address            = 0.0.0.0
于 2013-04-13T02:19:16.750 回答