Sql Server - 使用 Windows 身份验证连接

Sql Server - connect with windows authentication(Sql Server - 使用 Windows 身份验证连接)
本文介绍了Sql Server - 使用 Windows 身份验证连接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须使用 Windows 身份验证连接到 sql 服务器

sql server 在机器 192.168.3.6 上Web 服务器(客户端)在我的机器上 192.168.3.10

我正在使用 JTDS 驱动程序

dbUrl=jdbc:jtds:sqlserver://192.168.3.6:1099/db_test;instance=testConnection con = DriverManager.getConnection( dbUrl, "", "" );

我有sql server管理员用户的用户名和密码!

我还将 ntlmauth.dll 放入 c:windowsc:windowssystem32 中,但我总是出错:<块引用>

java.sql.SQLException: 用户 '(null)' 登录失败.理由:不是与受信任的 SQL Server 连接相关联.

有什么办法可以解决我的问题吗?非常感谢

解决方案

查看 jTDS FAQ http://jtds.sourceforge.net/faq.html

你必须通过 useNTLMv2=truedomain=yourdomain

i must connect to a sql server with windows authentication

sql server is on machine 192.168.3.6 web server (client) is on my machine 192.168.3.10

I'm using JTDS driver

dbUrl=jdbc:jtds:sqlserver://192.168.3.6:1099/db_test;instance=test
Connection con = DriverManager.getConnection( dbUrl, "", "" );

I have username and password of administrator user of sql server !

I also put ntlmauth.dll into c:windows and c:windowssystem32 and I have always error:

java.sql.SQLException: Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection.

Any idea to solve my problem ? Thank you very much

解决方案

See jTDS FAQ http://jtds.sourceforge.net/faq.html

you will have to pass useNTLMv2=true and domain=yourdomain

这篇关于Sql Server - 使用 Windows 身份验证连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)