我的应用程序在Linux Mandriva上运行,无法连接到MySQL数据库。
my.cnf的一部分:
bind-address="127.0.0.1"
# skip- networking
我将wait_timeout
设置如下:
SET GLOBAL wait_timeout = 28800;
我试图获得与数据库的连接:
public class TestJdbc {
public static void main(String[] args) {
Connection conn = null;
String url = "jdbc:mysql://localhost:3306/";
String driver = "com.mysql.jdbc.Driver";
String dbName = "gibrid", userName = "java",
password = "java";
try {
Class.forName(driver).newInstance();
conn = DriverManager.getConnection(url+dbName, userName, password);
System.out.println("Connected to the database");
conn.close();
System.out.println("Disconnected from database");
} catch (Exception e) {
e.printStackTrace();
}
}
}
我在jar中打包这个类并发送到服务器。当我尝试执行它时,我得到以下内容:
com.mysql.jdbc.CommunicationsException:
Communications link failure due to underlying exception:
** BEGIN MESSAGE **
java.net.ConnectException
MESSAGE: Connection timed out
STACKTRACE: java.net.ConnectException: Connection timed out
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:333)
...
但是当我从本地主机运行此代码时,一切正常:
Connected to the database
Disconnected from database
可能是什么问题?我非常感谢这些信息。谢谢大家。
答案 0 :(得分:2)
您可以telnet
在该Linux服务器上移植3306吗?这将告诉你是否正在侦听该端口。
请注意,如果从Windows服务器运行代码,请执行以下操作:
jdbc:mysql://localhost:3306/";
表示您正在连接Windows计算机上的服务,而不是Linux计算机上的服务。