빅데이터/hive
[hive] hive 와 db 연결에서 Public Key Retrieval is not allowed 오류가 발생하는 경우 처리
hs_seo
2021. 10. 6. 09:13
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>
반응형