绑定外部ip的端口

绑定外部ip的端口

我想将我的 3306 端口绑定到 0.0.0.0。实际上,当我这样做时:

netstat -an | grep 3306

它返回:

tcp        0      0 127.0.0.1:3306            0.0.0.0:*               LISTEN

我怎样才能做到这一点 ?

答案1

/etc/mysql/my.conf文件 (16.04 之前) 或/etc/mysql/conf.d/mysql.cnf(16.04 之后) 中,查找行bind-address。默认情况下它将被设置为bind-address = 127.0.0.1。只需将该行放在注释中 (#在该行前面添加)。

相关内容