4

我想尽办法让 Apache Zeppelin 在我的 linux VM 上运行。我正在关注本教程:

http://madhukaudantha.blogspot.ca/2015/03/building-apache-zeppelin.html

我做了以下事情:

  1. git克隆到机器
  2. 现在尝试运行“mvn clean package”

我得到以下错误摘要,我真的需要让它运行。

[INFO] Reactor Summary:
[INFO]
[INFO] Zeppelin .......................................... SUCCESS [16.124s]
[INFO] Zeppelin: Interpreter ............................. SUCCESS [36.026s]
[INFO] Zeppelin: Zengine ................................. SUCCESS [27.440s]
[INFO] Zeppelin: Spark ................................... SUCCESS [53.438s]
[INFO] Zeppelin: Markdown interpreter .................... SUCCESS [6.041s]
[INFO] Zeppelin: Angular interpreter ..................... SUCCESS [7.397s]
[INFO] Zeppelin: Shell interpreter ....................... SUCCESS [4.140s]
[INFO] Zeppelin: Hive interpreter ........................ SUCCESS [1:09.114s]
[INFO] Zeppelin: Tajo interpreter ........................ SUCCESS [15.153s]
[INFO] Zeppelin: web Application ......................... FAILURE [0.492s]
[INFO] Zeppelin: Server .................................. SKIPPED
[INFO] Zeppelin: Packaging distribution .................. SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3:57.426s
[INFO] Finished at: Wed Apr 29 12:18:39 EDT 2015
[INFO] Final Memory: 78M/266M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal com.github.eirslett:frontend-maven-plugin:0.0.23:install-node -and-npm (install node and npm) on project zeppelin-web: The plugin com.github.eirslett:fron tend-maven-plugin:0.0.23 requires Maven version 3.1.0 -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the follow ing articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginIncompatibleExceptio n
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <goals> -rf :zeppelin-web

我曾尝试通过他们的电子邮件 (users@zeppelin.incubator.apache.org) 联系 apache 孵化器团队,但电子邮件被退回。生病继续反弹寻找解决方案。

4

8 回答 8

1

下载、解压并安装 Maven3(如果尚未安装)并在 PATH 中设置 maven

导出 PATH=$PATH:$MAVEN_HOME/bin

即使我已经用最新的 Maven 更新了 PATH 变量。mvn -version 显示 2.x

现在使用 update-alternatives 手动更新 maven。

bdalab@solai:/opt$ sudo update-alternatives --install /usr/bin/mvn mvn $MAVEN_HOME/bin/mvn 1

bdalab@solai:/opt$ sudo update-alternatives --config mvn

现在,从选项列表中选择一个参考最近 maven3 安装的数字

于 2015-05-08T09:32:43.097 回答
1

我尝试了mvn install -DskipTests,具有以下系统配置:
1)Java 7
2)Maven 3.3 - 下载 tar 文件。提取并更新 /etc/profile 中的 MAVEN_HOME。然后运行“源”命令
3) Spark 0.9.0
4) CDH4 集群

构建对我来说是成功的。

于 2015-07-22T13:10:25.127 回答
0

您可以先使用 wget 测试您的节点和 npm 下载 url:wget XXXnode-12.4.tar.gz 如果此 url 无法下载文件可能是您的网络问题

于 2015-06-14T13:39:01.613 回答
0

我认为您可能缺少nodejs,npm的安装。请安装nodejs,npm。

sudo yum install nodejs npm --enablerepo=epel
于 2015-07-20T10:00:13.277 回答
0

我对 zeppelin 也有同样的问题,发现根本原因是“bower install”命令失败。

首先你需要安装nodejs

yum install -y 节点

然后安装凉亭

npm install -g 凉亭

然后安装 grunt

npm 安装 -g 咕噜声

使用非 root 用户运行以下命令(即创建 zeppelin 用户)

cd zeppelin-web

凉亭安装(需要一些时间才能完成)

cd .. mvn clean package -rf :zeppelin-web

于 2016-12-25T14:27:14.717 回答
0

因为问题是我使用的是 maven 3.2。安装了 maven 3.3.3,一切正常,再次构建,一切正常。

于 2015-11-13T17:39:50.287 回答
0

在我的情况下, git config 有效:

git config --global url."https://".insteadOf git://

确保 Maven > v3.0 , npm , nodejs 和 bower 应该安装。

于 2015-07-28T13:32:40.943 回答
-1

https://github.com/NFLabs/zeppelin/issues/320

将 github 从 git:// 切换到 https:// 就可以了。

于 2015-05-17T23:44:31.647 回答