[Error] MSSQL 연결 오류 문제 (java.security 설정)

동민·2021년 3월 9일
0
  • src/templates 아래에 있는 html 파일의 server_url, push_url, push_server_url은 모두 localhost로 변경
  • out/templates 아래에 있는 html 파일은 cs.tason.com

이 때, MSSQL CONNECTION EXCEPTION이 발생함

  • C:\Program Files\Java\jre1.8.0_271\lib\security 에서 java.security 설정을 다음과 같이 변경한다.

    (Original Keys)
    jdk.certpath.disabledAlgorithms=MD2, MD5, RSA keySize < 1024
    jdk.tls.disabledAlgorithms=SSLv3, RC4, MD5withRSA, DH keySize < 768
    
    (Change To)
    jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024
    jdk.tls.disabledAlgorithms=SSLv3, RC4, MD5withRSA, DH keySize < 768
 * MD5 알고리즘을 제거
profile
BE Developer

0개의 댓글