hadoop security distcp 시 SIMPLE authentication error(distcp hadoop secure insecure)
IT기술/hadoop family2021. 1. 15. 23:47
2019-12-24 작성
Server asks us to fall back to SIMPLE auth, but this client is configured to only allow secure connections
SIMPLE authentication is not enabled. Available:[TOKEN, KERBEROS]
hadoop security를 구성한 후에 위와 같이 SIMPLE authentication 오류가 발생할 수 있다. SIMPLE authentication이 허용되어 있지 않아서 발생한 내용인데, 다음 설정을 core-site.xml에 넣어주면 해결된다.
클라우데라에서는 다음과 같이 설정한다.
<property>
<name>ipc.client.fallback-to-simple-auth-allowed</name>
<value>true</value>
</property>
'IT기술 > hadoop family' 카테고리의 다른 글
Hive Authorization Configuration 권한 설정 (0) | 2021.01.17 |
---|---|
hive에서 json포맷 기반으로 데이터 가져오기 위한 설정 (0) | 2021.01.16 |
apache zeppelin 설치하고 hadoop kerberos 연동하기 (0) | 2021.01.15 |
zeppelin에 jdbc interpreter 설정하기(apache hive 기준) (0) | 2021.01.15 |
pyspark parquet file 읽어오기 (0) | 2021.01.15 |
댓글()