MySQL remote connection [not as usual]

前端 未结 4 585
温柔的废话
温柔的废话 2021-02-06 11:20

I\'m not getting to get access to mysql externally. I think it\'s mysql or firewall stuff or some privilege within the mysql.

I already tried doing steps that are on int

4条回答
  •  没有蜡笔的小新
    2021-02-06 12:06

    Your netstat output shows that it is not open to external connections, it should show 0.0.0.0 in there instead of 127.0.0.1 (which is loopback, not local as such).

    You probably need to add a different bind-address to your mysql config (and don't forget to restart the service).

    Try

    bind-address = *

    or your actual NIC ip (66.123.173.170) perhaps.

提交回复
热议问题