当前位置:   article > 正文

包解决! 驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接_the driver could not establish a secure connection

the driver could not establish a secure connection to sql server by using se
驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接。错误:“The server selected protocol version TLS10 is not accepted by client preferences [TLS12]”

本文提供两种解决方案,保证能解决这个问题

虽然现在大家基本上都用mysql数据库了,但是难免有时候会碰到要使用sqlserver的情况。

这时候如果你不是用微软的产品去连接,比如你用java开发,使用驱动包连接可能会碰到【驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接。错误:“The server selected protocol version TLS10 is not accepted by client preferences [TLS12]”】这个错误.

低版本的驱动还可能是英文的报错【The driver could not establish a secure connection to SQL Server by using Secure Sockets Layer (SSL) encryption. Error: “The server selected protocol version TLS10 is not accepted by client preferences [TLS12]”. ClientConnectionId:d5fd8d69-ae88-4055-9f6d-6e8515224ce2】。

这个问题其实最主要还得看后面那一句话【The server selected protocol version TLS10 is not accepted by client preferences [TLS12]】,意思是数据库服务端的协议版本是TLS10,而客户端协议版本是TLS12。

只需要在你的设备上找到jdk的安装目录【\Java\jdk1.8.0_291\jre\lib\security】下的java.security改改安全协议的配置即可。删掉这两个:TLSv1、TLSv1.1。特别要注意的是,如果你是选择了jre的运行环境来运行,那就是这个目录【\jre1.8.0_291\lib】

修改前:
在这里插入图片描述

修改后:
在这里插入图片描述

有的同学可能找不到这个文件,或者文件没改对还是不行,ok,没关系,还有第二种方法,此种加启动参数的方式同样适用于linux系统
添加启动参数如下:

"-Djava.security.properties=E:\tmp\my.java.security"
  • 1

后面跟的文件你可以自定义,内容如下,但你也可以指定一个不存在的文件,这就意味着你并不需要这个安全协议,也是可以的

jdk.tls.disabledAlgorithms=SSLv3, 3DES_EDE_CBC, DES, MD5withRSA, \
    DH keySize < 1024, EC keySize < 224, anon, NULL, \
    include jdk.disabled.namedCurves
  • 1
  • 2
  • 3

1、tomcat启动如何添加:
在这里插入图片描述
2、运行jar时直接在命令后面添加参数
3、springboot启动和tomcat类似,在启动配置里边添加此启动参数
附上springboot 连接sql server的配置代码
1、引入依赖

<dependency>
	   <groupId>com.microsoft.sqlserver</groupId>
	   <artifactId>mssql-jdbc</artifactId>
	   <version>8.2.2.jre8</version>
</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5

2、数据库连接配置

driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
url: jdbc:sqlserver://ip:port;databasename=数据库名
username: sa
password: 密码
  • 1
  • 2
  • 3
  • 4

分享到这里就结束了,欢迎大家讨论指正。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小惠珠哦/article/detail/925723
推荐阅读
相关标签
  

闽ICP备14008679号