DBeaver cannot connect to SQL Server

Write a custom directory title here

DBeaver cannot connect to SQL Server

question

After installing the new version of DBeaver, the following error is reported when connecting to SQL Server:

“The server selected protocol version TLS10 is not accepted by client preferences [TLS13, TLS12]

reason

JDK does not recommend using the old TLS1.0 protocol, so TLS10 support is removed by default.

Solution

Modify the "dbeaver/jre/conf/security/java.security" file (if it is MacOS, the file path is: /Applications/DBeaver.app/Contents/Eclipse/jre/Contents/Home/conf/security/java.security)

Delete TLSv1, TLSV1.1, 3DES_EDE_CBC in the "jdk.tls.disabledAlgorithms" configuration item, and then restart DBeaver.

Guess you like

Origin blog.csdn.net/kongxx/article/details/120794240