Zeppelin安装(Docker版)

前置条件:安装Docker(可参考)

1.Pull Zeppelin镜像:

去Docker Hub官网找需要的Zeppelin版本,本文以"0.9"版本为例

docker pull apache/zeppelin:0.9.0
[root@lee000 ~]# docker pull apache/zeppelin:0.9.0
0.9.0: Pulling from apache/zeppelin
fe703b657a32: Pull complete 
f9df1fafd224: Pull complete 
a645a4b887f9: Pull complete 
57db7fe0b522: Pull complete 
4e0427e9cf76: Pull complete 
78257ba855d1: Pull complete 
aeeac4e74c73: Pull complete 
ec837c1cd2ab: Pull complete 
9132860032fc: Pull complete 
27fec663a415: Pull complete 
98921bfcfa52: Pull complete 
0f903898df05: Pull complete 
e0ab70d3cb38: Pull complete 
235cf5a6a0b9: Pull complete 
Digest: sha256:0691909f6884319d366f5d3a5add8802738d6240a83b2e53e980caeb6c658092
Status: Downloaded newer image for apache/zeppelin:0.9.0
docker.io/apache/zeppelin:0.9.0

pull速度慢可参考:https://blog.csdn.net/yuxielea/article/details/104930177

如果不指定版本号,则将pull最新版本镜像

2.Run Zeppelin镜像:

docker run -d --name zeppelin0.9 -p 8888:8080 apache/zeppelin:0.9.0

--name:指定容器名字
-p:指定容器暴露的端口

查看镜像启动情况:

docker ps -a

3.查看Zeppelin管理页面

浏览器中输入:localhost:8888
Zeppelin安装(Docker版)_第1张图片

你可能感兴趣的:(Zeppelin)