apache tez 빌드 과정에서 나온 오류 및 트러블 슈팅을 기록합니다.

 

https://developer-woong.tistory.com/45

 

apache tez 빌드

centos7 기준입니다. maven, hive가 설치되어있음을 가정합니다. 아래 포스팅에 설치된 mast02서버의 hive를 사용할 예정입니다. tez버전은 0.10.2를 사용합니다. 조언과 충고 감사합니다. https://developer-woon

developer-woong.tistory.com

1. Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.8.0:yarn (yarn install) on project tez-ui: Failed to run task: 'yarn install' failed. org.apache.commons.exec.ExecuteException: Process exited with an error: 1 (Exit value: 1) -> [Help 1]
error /opt/apps/tez/tez-ui/src/main/webapp/node_modules/phantomjs-prebuilt: Command failed.
-> yum install -y bzip2

2. Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.8.0:bower (bower install) on project tez-ui: Failed to run task: 'bower install --allow-root=false' failed.
-> root가아닌계정으로 빌드

 

2번이 해결되지않고,

bower alasql#^0.4.0 CERT_HAS_EXPIRED Request to https://registry.bower.io/packages/alasql failed: certificate has expired

라는 오류가 빌드 중 발생할 시

vi tez-ui/pom.xml

이 부분을

<allow-root-build>--allow-root=false</allow-root-build>

이렇게 수정해주세요

<allow-root-build>--config.strict-ssl=false --allow-root=false</allow-root-build>

 

반응형

'BigData > Hive' 카테고리의 다른 글

Hive) 테이블 컬럼명 변경  (0) 2023.12.28
apache hive 엔진 tez 교체  (0) 2023.09.08
Hive server, metastore 로그  (0) 2023.09.07
apache tez 빌드  (2) 2023.07.24
Apache Hive 설치  (0) 2023.07.24

+ Recent posts