Zeppelin fails to load on docker: logErrors docker zeppelin

帅比萌擦擦* 提交于 2021-01-27 19:15:02

问题


First issue I´m having is that I can not pull the base image without specifying the version tag, not a big deal... but I find it odd, after that

docker pull apache/zeppelin:0.8.2

After that I´m able to get the image, but one I try to run it as:

docker run -p 8080:8080  apache/zeppelin:0.8.2

or

docker run -p 8080:8080 --rm --name zeppelin apache/zeppelin:0.8.2

The browser just don´t show any result at the corresponding port: localhost:8080/

In the terminal I get a series of warnings an the following error:

org.glassfish.jersey.internal.Errors logErrors docker zeppelin

回答1:


Zeppelin Docker documentation is missing. You can find some recent fixes in their repo, e.g. env variable ZEPPELIN_ADDR=0.0.0.0:

docker run --rm -ti \
  -p 8080:8080 \
  -e ZEPPELIN_ADDR=0.0.0.0 \
  --name zeppelin \
  apache/zeppelin:0.8.2


来源:https://stackoverflow.com/questions/59254456/zeppelin-fails-to-load-on-docker-logerrors-docker-zeppelin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!