尝试使用JDBC连接连接到SQL Server2005时出现以下错误。
Error: 17806, Severity: 20, State: 2.
Logon SSPI handshake failed with error code 0x8009030c while establishing
a connection with integrated security; the connection has been
closed. [CLIENT: 127.0.0.1]
Logon Error: 18452, Severity: 14, State: 1.
Logon Login failed for user ''. The user is not associated with a trusted
SQL Server connection. [CLIENT: 127.0.0.1]我的连接URL:
jdbc:sqlserver://LOCALHOST:1433;DatabaseName=master;integratedSecurity=true发布于 2013-08-05 16:33:16
我也遇到了这个问题,原因很简单:我的域用户的密码已过期,因此凭据已被撤销。
碰巧的是,我还让SQL Management Studio保持打开状态,这样在我更改域密码之前,它每隔2-3分钟就会生成一次这样的错误。
https://stackoverflow.com/questions/1538027
复制相似问题