我突然遇到连接到我的本地SQL Server 2005数据库引擎实例的问题。几天前连接到这个实例我没有问题。但是,我可以连接到Integration Services和Analysis Services。只有数据库引擎给我这个错误:
A connection was successfully established with the server,
but then an error occurred during the pre-login handshake.
(provider: SSL Provider, error: 0 -
The Local Security Authority cannot be contacted) (Microsoft SQL Server)
我唯一做的就是安装了Visual Studio 2017。
答案 0 :(得分:0)
这是一个通用错误,原因很多。通常是过期密码之类的东西。要进行故障排除,您应该启用Netlogon服务日志记录,请关注Enabling debug logging for the Netlogon service:
c:\>Nltest /DBFlag:2080FFFF
然后重现您的问题,然后查看日志文件,该文件将位于%windir%\debug\netlogon.log
。阅读文件,尝试了解正在发生的事情。
不要忘记之后关闭调试日志记录:
c:\>Nltest /DBFlag:0