2

Jetbrains 0xDBe は、Windows 認証を使用した SQL Server へのログインをサポートしていますか?

OS X Mavericks を実行している Mac を使用しており、VPN 経由で企業のステージング データベースに接続しようとしています。そこでうまくいかないことがたくさんあります...

現在、私の URL は次のようになっています。

jdbc:sqlserver://10.11.222.333:12345

に設定しようとintegratedSecuritytrueましたが、URL にドメインを指定しようとしました:

jdbc:sqlserver://10.11.222.333:12345;domain=MyDomain

何があっても、接続をテストすると、次のエラーでタイムアウトします。

Connection to Staging failed
java.sql.SQLException: The TCP/IP connection to the host 10.11.222.333, port 12345 has failed. Error: "connect timed out. 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.".
    at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDriverError(SQLServerException.java:190)
    at com.microsoft.sqlserver.jdbc.SQLServerException.ConvertConnectExceptionToSQLServerException(SQLServerException.java:241)
    at com.microsoft.sqlserver.jdbc.SocketFinder.findSocket(IOBuffer.java:2243)
    at com.microsoft.sqlserver.jdbc.TDSChannel.open(IOBuffer.java:491)
    at com.microsoft.sqlserver.jdbc.SQLServerConnection.connectHelper(SQLServerConnection.java:1309)
    at com.microsoft.sqlserver.jdbc.SQLServerConnection.login(SQLServerConnection.java:991)
    at com.microsoft.sqlserver.jdbc.SQLServerConnection.connect(SQLServerConnection.java:827)
    at com.microsoft.sqlserver.jdbc.SQLServerDriver.connect(SQLServerDriver.java:1012)
    in RemoteDriverImpl.connect(RemoteDriverImpl.java:27)
    in RemoteUtil.access$100(RemoteUtil.java:36)
    in RemoteUtil$RemoteInvocationHandler.invoke(RemoteUtil.java:227)
    at com.sun.proxy.$Proxy84.connect(Unknown Source)
    in LocalDataSource.getConnection(LocalDataSource.java:240)

助言がありますか?

4

1 に答える 1

4

同じ問題が発生していましたが、[データ ソースの管理] ウィンドウで jTds ドライバーの詳細設定にドメインを追加することで、最終的に修正が見つかりました。

次に、次の接続文字列を使用します。

jdbc:jtds:sqlserver://<SERVER>:<PORT>;integratedSecurity=true;authenticationScheme=JavaKerberos

または名前付きインスタンスに接続する場合:

jdbc:jtds:sqlserver://<SERVER>;instance=<NAMED_INSTANCE>;integratedSecurity=true;authenticationScheme=JavaKerberos
于 2015-03-12T01:31:28.280 に答える