Apache zeppelin build process failure in zeppelin-web with bower

房东的猫 提交于 2019-12-05 22:51:52

I ran into the same problem. First try to go to the zeppeling-web component and run there mvn package -DskipTests. It should give you more details about what is failing:

cd zeppelin-web
mvn package -DskipTests

In my case it was a problem with git proxies, since I am working in a corporate environment. At the console, issuing the command:

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

did the trick.

You have to run the build command with sudo

This worked for me: run the following as a non-root user, (replace <goals> with your -P and -D flags, or remove for standalone install):

sudo env "PATH=$PATH" mvn clean install <goals> -DskipTests
sudo env "PATH=$PATH" mvn clean install <goals> -DskipTests -rf :zeppelin-web
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!