mariadb에서 SSL/TLS를 사용하도록 스프링 부트 애플리케이션을 구성하는 방법은 무엇입니까?
연결 문자열
url: jdbc:mariadb://xyz:3306/test?useSSL=true&trustStore=classpath:/path/truststore.jks&trustStorePassword=mypwd&keystoreStore=classpath:/path/keystore.jks&keystoreStorePassword=mypwd
mairadb를 tls/ssl 연결로 연결하면 다음 오류가 발생합니다. sun.security.validator.검증자예외: PKIX 경로를 빌드하지 못했습니다. sun.security.provider.certpath.SunCertPathBuilder예외: 요청한 대상에 대한 올바른 인증 경로를 찾을 수 없습니다.
sun.security.provider.certpath로 인해 발생합니다.SunCertPathBuilder예외: 요청한 대상에 대한 올바른 인증 경로를 찾을 수 없습니다.
spring boot에서 mariadb를 사용하여 ssl 연결하는 방법
언급URL : https://stackoverflow.com/questions/74610500/how-to-configure-spring-boot-application-to-use-ssl-tls-over-mariadb
'programing' 카테고리의 다른 글
실행하는 PowerShell 스크립트의 디렉터리를 가져오려면 어떻게 해야 합니까? (0) | 2023.08.27 |
---|---|
XMLHttpRequest의 xhr.response와 xhr.responseText의 차이점은 무엇입니까? (0) | 2023.08.27 |
이상한 Oracle 오류:식별자가 너무 깁니다. ORA-00972 (0) | 2023.08.27 |
단일 Lodash 함수를 가져오는 방법? (0) | 2023.08.27 |
MariaDB에서 SQL 쿼리 "ALTER USER"를 수정하시겠습니까? (0) | 2023.08.27 |