mysql 8.x나 5.x에서 데이터베이스 접속 암호를 암호화 처리 하는 경우 다음과 같은 오류가 발생할 수 있습니다. 이럴 때는 데이터베이스 커넥션 스트링에 옵션을 추가하여 문제를 해결할 수 있습니다.
오류 : Public Key Retrieval is not allowed
$ /opt/hive/bin/schematool -dbType mysql -initSchema
Metastore connection URL: jdbc:mysql://xxx.xx:3306/db_name?useSSL=false
Metastore Connection Driver : com.mysql.cj.jdbc.Driver
Metastore connection User: sha256_user
org.apache.hadoop.hive.metastore.HiveMetaException: Failed to get schema version.
Underlying cause: java.sql.SQLNonTransientConnectionException : Public Key Retrieval is not allowed
SQL Error code: 0
Use --verbose for detailed stacktrace.
*** schemaTool failed ***
해결방법: hive-site 커넥션 스트링에 allowPublicKeyRetrieval 옵션 추가
<property>
<name>javax.jdo.option.ConnectionURL</name>
<value>jdbc:mysql://xxx.xx:3306/db_name?allowPublicKeyRetrieval=true&useSSL=false</value>
</property>
반응형
'빅데이터 > hive' 카테고리의 다른 글
[hive] hiveserver2 SSL 적용 및 비라인을 이용한 연결 방법 (0) | 2022.07.15 |
---|---|
[hive] hive 2.3 버전 log4j2 취약점 처리 방안 (0) | 2021.12.13 |
[hive3] hadoop3와 hive3 연동에서 guava 오류 처리 (0) | 2021.06.17 |
[tez] TEZ ui 설정 (0) | 2021.06.16 |
[hive] hive의 spark 엔진에서 Execution Error, return code 30041 오류 (0) | 2021.06.01 |