使用 JDBC 连接到具有防火墙的 SQL 数据库

Using JDBC to connect to SQL database that has a firewall

我目前正在做一些测试,我想自动执行一些数据库查询。目前我想连接的服务器有防火墙阻止它,所以我对如何设置 JDBC 和 MYSQL Workbench 有点困惑。我想知道任何人都可以给我一些建议,告诉我应该如何成功连接到远程数据库。

JDBC 与防火墙或其他网络相关结构无关。为了正确连接到数据库服务器,当前尝试连接的计算机应该具有对数据库服务器的访问权限和足够的权限。与系统管理员或其他负责解决此网络问题的人员交谈。

首先,您是否尝试连接到 SQL 数据库?如果是这样,你会得到像

这样的错误吗?
SQLServerException: The TCP/IP connection to the host localhost, port (number) has failed. Error: "Connection refused: connect. Verify the connection properties. Make sure that an instance of SQL Server is running on the host and accepting TCP/IP connections at the port. Make sure that TCP connections to the port are not blocked by a firewall.

您是否控制服务器,或者与控制服务器的人有联系?我遇到了与您相同的问题,并通过转到服务器防火墙设置并允许 <port-number> 通过防火墙来修复它,然后将我的 JDBC 连接字符串设置为

 Server=myServerAddress;Port=<port-number>;Database=myDataBase;Uid=myUsername;Pwd=myPassword;

我使用 SQL 服务器,而不是 MySQL,但我认为这是端口问题,而不是您的数据库管理系统。