java "The server selected protocol version TLS10 is not accepted by client preferences [TLS13, TLS12]
时间: 2023-10-26 22:26:28 浏览: 167
Wireshark解密TLS
5星 · 资源好评率100%
Java的错误信息"The server selected protocol version TLS10 is not accepted by client preferences [TLS13, TLS12]"是由于客户端的TLS版本偏好与服务器选择的TLS版本不匹配导致的。TLS(传输层安全协议)是一种用于保护网络通信的加密协议。
在这个错误信息中,客户端偏好的TLS版本是[TLS13, TLS12],但服务器选择的TLS版本是TLS10。这意味着客户端希望使用TLS1.3或TLS1.2,但服务器只支持TLS1.0版本。
解决这个问题的一种方法是在Java应用程序的配置中禁用TLS1.0,并启用TLS1.2或TLS1.3。可以通过以下步骤来实现:
1. 打开Java应用程序的配置文件,通常是一个名为"java.security"的文件。
2. 在该配置文件中找到"jdk.tls.disabledAlgorithms"配置项。
3. 确保该配置项中没有禁用TLS1.2或TLS1.3的设置。如果有禁用TLS1.0的设置,可以将其删除或注释掉。
4. 保存配置文件并重新启动Java应用程序。
这样做将使Java应用程序可以使用TLS1.2或TLS1.3与SQL Server建立安全连接,解决错误"The server selected protocol version TLS10 is not accepted by client preferences [TLS13, TLS12]"。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [一分钟解决 The server selected protocol version TLS10 is not accepted 问题](https://blog.csdn.net/w605283073/article/details/126755540)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [The server selected protocol version TLS10 is not accepted by client preferences [TLS12] 报错处理](https://blog.csdn.net/qingquanyingyue/article/details/121255647)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文