#region 連接到USUN-SQL需降低TLS版本
openssl_conf = default_conf
[default_conf]
ssl_conf = ssl_sect
[ssl_sect]
system_default = system_default_sect
[system_default_sect]
MinProtocol = TLSv1
CipherString = DEFAULT@SECLEVEL=1
#endregion
※VSCode + Remote developement + JUnit時,需修改~/.vscode-server/extensions/redhat.java-<插件版本>-linux-x64/jre/<Java版本>-linux-x86_64/conf/security
找到
jdk.tls.disabledAlgorithms=SSLv3, TLSv1, TLSv1.1, RC4, DES, MD5withRSA, \
移除TLSv1, TLSv1.1
變成
jdk.tls.disabledAlgorithms=SSLv3, RC4, DES, MD5withRSA, \
存檔
連線字串需新增
trustServerCertificate=true
jdk.tls.disabledAlgorithms=SSLv3, TLSv1, TLSv1.1, RC4, DES, MD5withRSA, \
移除TLSv1, TLSv1.1
變成
jdk.tls.disabledAlgorithms=SSLv3, RC4, DES, MD5withRSA, \
存檔
連線字串需新增
trustServerCertificate=true
重啟Java程式
但盡速升級MSSQL的SSL版本才是正道。