gpt4 book ai didi

java - MAC OS com.mysql.cj.exceptions.CJCommunicationsException:通信链接失败

转载 作者:行者123 更新时间:2023-11-29 15:22:14 28 4
gpt4 key购买 nike

我试图弄清楚为什么我的应用程序仅在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 = "g4therco_g4therapp";
String password = "slackers";
String url = "jdbc:mysql://cpl81.hosting24.com:3306/g4therco_wp141";
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!");
}
}
}
}


这是错误日志。

上次登录:ttys000上星期四12月12日12:25:13

Michaels-iMac:〜michaeldostie $ cd下载

Michaels-iMac:下载michaeldostie $ java -jar dbasetester.jar

*****与G4THER DBase测试器的MySQL JDBC连接*****

无法连接到数据库服务器

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毫秒前。驱动程序尚未收到来自服务器的任何数据包。

在java.base / jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(本地方法)

在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:提供了节点名或服务名,或者未知

在java.base / java.net.Inet6AddressImpl.lookupAllHostAddr(本机方法)

在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:下载michaeldostie $

谢谢

最佳答案

我能够使用IP地址而不是主机名来解决此问题。我使用一个站点查找带有主机名的IP,并更改了代码。到目前为止,一切都很好。

关于java - MAC OS com.mysql.cj.exceptions.CJCommunicationsException:通信链接失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59310761/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com