2016-12-06 51 views
2

當在本地模式下運行在Ubuntu 14.04下的Docker容器中安裝Apache Zeppelin 0.7.0時,我遇到了一個奇怪的錯誤。來自源代碼的Apache-Zeppelin 0.7構建在zeppelin-server上失敗

我建造飛艇使用此命令(作爲root):

mvn clean package -U -X -DskipTests -Pspark-2.0 -Dspark.version=2.0.2 -Phadoop-2.7 -Pyarn -Ppyspark -Psparkr -Pr -Pscala-2.11 

構建錯誤達到齊柏林服務器告訴我的時候:

[WARNING] The POM for org.apache.zeppelin:zeppelin-zengine:jar:0.7.0-SNAPSHOT is missing, no dependency information available 

通往以下警告:

[WARNING] The requested profile "spark-2.0" could not be activated because it does not exist. 
[WARNING] The requested profile "hadoop-2.7" could not be activated because it does not exist. 
[WARNING] The requested profile "yarn" could not be activated because it does not exist. 
[WARNING] The requested profile "pyspark" could not be activated because it does not exist. 
[WARNING] The requested profile "sparkr" could not be activated because it does not exist. 

終於有這個錯誤:

[ERROR] Failed to execute goal on project zeppelin-server: Could not resolve dependencies for project org.apache.zeppelin:zeppelin-server:jar:0.7.0-SNAPSHOT: Could not find artifact org.apache.zeppelin:zeppelin-zengine:jar:0.7.0-SNAPSHOT in apache.snapshots (http://repository.apache.org/snapshots) -> [Help 1] 

在此先感謝幫助我弄清楚這一點。

PS:對不起我的英文不好

回答

1

你能嘗試運行以下命令中的zeppelin home不在zeppelin-server目錄中?

mvn package -DskipTests -Dfile=zeppelin-zengine-0.7.0-SNAPSHOT.jar

相關問題