Conexión remota java mysql
Con respecto a las conexiones JAVA - MYSQL, cuando las quiero realizar de manera remota no realiza la conexión
public String url = "jdbc:mysql://209.51.195.116:3306/base_datos";
conn = DriverManager.getConnection(url, "usuario_bd", "password_bd");
El error que me sale cuando intento realizar la conexion es el siguiente :
com. Mysql. Jdbc. Exceptions. Jdbc4. CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
public String url = "jdbc:mysql://209.51.195.116:3306/base_datos";
conn = DriverManager.getConnection(url, "usuario_bd", "password_bd");
El error que me sale cuando intento realizar la conexion es el siguiente :
com. Mysql. Jdbc. Exceptions. Jdbc4. CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
1 Respuesta
Respuesta de krlosnow
1