zoukankan      html  css  js  c++  java
  • jtds"Network error IOException Connection refused: connect"问题解决

    用jtds作驱动程序连接SQL Server常常遇到这个问题:
    java.sql.SQLException: Network error IOException Connection refused: connect
    下午查了一些资料,算是得到一些信息,总结一下。
    jtds官方网站解释如下:

    Why do I get java.sql.SQLException: "Network error IOException: Connection refused: connect" when trying to get a connection?

    The "Connection refused" exception is thrown by jTDS when it is unable to connect to the server. There may be a number of reasons why this could happen:

    1. The server name is misspelled or the port number is incorrect.
    2. SQL Server is not configured to use TCP/IP. Either enable TCP/IP from SQL Server's Network Utility app or have jTDS connect via named pipes (see the URL format for information on how to do this).
    3. There is a firewall blocking port 1433 on the server.

    To check whether TCP/IP is enabled and the port is not blocked you can use "telnet <server_host> 1433". Until telnet doesn't connect, jTDS won't either. If you can't figure out why, ask your network administrator for help.

     

    解决问题当然是先按照官网来检查了,于是一步步查下来,发现符合现象2,但是通过网络管理工具察看TCP/IP,正常。而现象确实与上文描述相同,百思不得其解。

    于是baidu+google,终于看到有网友说SQL  Server 2000需要升级到SP4  SQLServer2000中文版SP4补丁

  • 相关阅读:
    input标签上传文件处理。
    Radio单选框元素操作。
    CompletableFuture方法
    传播学 2
    传播学 1
    0
    紅軍不怕遠征難
    ~~~~~~~~~
    什么是企业战略
    论述提供公共咨询服务的两种主要方式。
  • 原文地址:https://www.cnblogs.com/alamps/p/1438751.html
Copyright © 2011-2022 走看看