我的windows10电脑,mssql客户端和c#程序连接mssql时均出现这个错误(连接其他sql服务器则正常):
因为算法不同,客户端和服务器无法通信
其他windows2012服务器则可正常连接,
参考:“因为算法不同,客户端与服务器无法通信。”的解决方法 - 水沽籽 - 博客园 (cnblogs.com)
System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12; // 或者 System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
以上代码无效
修改服务器的注册表后,恢复正常
计算机\HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server
即把服务器上的Server节中,enable设置为1
并且服务器重启后才生效