0

我在java中使用ServerSocket来检查mysql是否正在运行。如果它没有运行,我提示用户请运行你的 mysql 服务器。但是,我的一些用户抱怨虽然 mysql 正在运行,但我们收到了错误消息。它只发生在 macos 中。我发现的是 .

Java 代码:

public static boolean isPortFree(int port)
{
    if(port <= 0)
    {
        return false;
    }
    ServerSocket sock = null;
    try
    {
        String bindAddress = System.getProperty("bindaddress", "127.0.0.1");
        sock = new ServerSocket(port,0,InetAddress.getByName(bindAddress));
    }
    catch(Exception ex)
    {
        return false;
    }
    finally
    {
        if (sock != null)
        {
            try
            {
                sock.close();
            }
            catch (Exception e)
            {
                e.printStackTrace();
            }
        }
    }
    return true;
}

如果我将系统属性设置bindaddresslocalhost它返回 false 我设置为127.0.0.1返回 true 。localhost , 127.0.0.1 与它的行为相同。它只出现在 macos 中。我认为这不是my.cnf绑定地址问题。因为我签入了命令提示符

 mysql -uroot -hlocalhost
 mysql -uroot -h127.0.0.1

两者都是作品。

网络统计

苹果系统

 tcp4       0      0  *.3306                 *.*                    LISTEN

其他操作系统

tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN 

tcp4和tcp有什么区别吗?

知道为什么会这样吗?

4

1 回答 1

0

这两个示例有效地绑定到不同的接口:INADDR_ANY不阻止绑定到特定的适配器。

如果在 OSX MySQL 上的配置与您报告的“其他操作系统”完全相同,它将按预期工作。

于 2012-10-03T16:53:19.653 回答