MAC OS com.mysql.cj.exceptions.CJCommunicationsException:通信链路故障
Posted
技术标签:
【中文标题】MAC OS com.mysql.cj.exceptions.CJCommunicationsException:通信链路故障【英文标题】:MAC OS com.mysql.cj.exceptions.CJCommunicationsException: Communications link failure 【发布时间】:2020-04-06 05:01:29 【问题描述】:我试图找出为什么我的应用程序无法连接到我的数据库,仅在 Mac OS 上,所以我使用一个小程序在 OS 的终端上运行,看看是什么原因造成的。
似乎是主机名导致了问题,但我的服务提供商无法给我一个 IP 地址来尝试是否解决了我的问题。有没有人对此有解决方案或对我可以尝试什么有想法?非常感谢您的宝贵时间。
这里是连接程序。数据库用户只能选择,主机名正确,密码也正确。此问题仅在 MAC OS 上发生,而不是一直发生。我的数据库接受来自所有 ip 的连接,我使用了通配符。任何关于下一步尝试的想法都值得赞赏。
import java.sql.Connection;
import java.sql.DriverManager;
public class test
public static void main(String[] args)
System.out.println("\nmysql JDBC Connection To G4THER DBase Tester");
Connection conn = null;
try
Class.forName("com.mysql.cj.jdbc.Driver").newInstance();
String userName = "app";
String password = "password";
String url = "jdbc:mysql://hostname:3306/dbase";
conn = DriverManager.getConnection(url, userName, password);
System.out.println("\nDatabase Connection Established...");
Thread.sleep(1500L);
catch (Exception ex)
System.err.println("Cannot connect to database server");
ex.printStackTrace();
finally
if (conn != null)
try
System.out.println("\nNow Lets terminate the Connection...");
Thread.sleep(1500L);
conn.close();
System.out.println("\nDatabase connection terminated...");
Thread.sleep(1500L);
System.out.println("\n***** Everything works fine Ol' man *****");
catch (Exception ex)
System.out.println("Error in connection termination!");
这是错误日志。
上次登录时间:12 月 12 日星期四 12:25:13 在 ttys000 上
Michaels-iMac:~ michael$ cd 下载
Michaels-iMac:下载 michael$ java -jar dbasetester.jar
***** MySQL JDBC 连接到 G4THER DBase 测试器 *****
无法连接到数据库服务器
com.mysql.cj.jdbc.exceptions.CommunicationsException:通信链路故障
最后一个成功发送到服务器的数据包是在 0 毫秒前。驱动没有收到服务器发来的任何数据包。
在 com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:174)
在 com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:64)
在 com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:836)
在 com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:456)
在 com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:246)
在 com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:199)
在 java.sql/java.sql.DriverManager.getConnection(DriverManager.java:677)
在 java.sql/java.sql.DriverManager.getConnection(DriverManager.java:228)
在 test.main(test.java:18)
原因:com.mysql.cj.exceptions.CJCommunicationsException:通信链路故障
最后一个成功发送到服务器的数据包是在 0 毫秒前。驱动没有收到服务器发来的任何数据包。
at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
在 java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
在 java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
在 java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:500)
在 java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:481)
在 com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
在 com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
在 com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
在 com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFactory.java:167)
在 com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:91)
在 com.mysql.cj.NativeSession.connect(NativeSession.java:144)
在 com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:956)
在 com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:826)
...还有 6 个
原因:java.net.UnknownHostException: cpl81.hosting24.com: nodename or servname provided, or not known
在 java.base/java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)
在 java.base/java.net.InetAddress$PlatformNameService.lookupAllHostAddr(InetAddress.java:930)
在 java.base/java.net.InetAddress.getAddressesFromNameService(InetAddress.java:1499)
在 java.base/java.net.InetAddress$NameServiceAddresses.get(InetAddress.java:849)
在 java.base/java.net.InetAddress.getAllByName0(InetAddress.java:1489)
在 java.base/java.net.InetAddress.getAllByName(InetAddress.java:1348)
在 java.base/java.net.InetAddress.getAllByName(InetAddress.java:1282)
在 com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:132)
在 com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:65)
...还有 9 个
Michaels-iMac:下载 michael$
谢谢
【问题讨论】:
【参考方案1】:我能够使用 IP 地址而不是主机名来解决问题。我使用了一个站点来查找带有主机名的 IP 并更改了我的代码。到目前为止一切顺利。
【讨论】:
以上是关于MAC OS com.mysql.cj.exceptions.CJCommunicationsException:通信链路故障的主要内容,如果未能解决你的问题,请参考以下文章
markdown Mac os上下文菜单服务:向mac os上下文菜单添加新服务