我在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;
}
如果我将系统属性设置bindaddress
为localhost
它返回 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有什么区别吗?
知道为什么会这样吗?