EthicalML / kafka-spark-streaming-zeppelin-docker

One click deploy docker-compose with Kafka, Spark Streaming, Zeppelin UI and Monitoring (Grafana + Kafka Manager)
MIT License
120 stars 74 forks source link

Unable to access the 172.25 ip series #6

Open ckrath opened 2 years ago

ckrath commented 2 years ago

Please let me know how to access the url http://172.25.0.19:8080/#/notebook/2EAB941ZD.

omar94khan commented 2 years ago

In order to access that, first go into the docker-compose.yml file, and add the ports condition to each service defined, other than 'kafka1' and 'kafka2'

For example, your original zookeeper service would have the following block of code: ` zookeeper: image: wurstmeister/zookeeper:latest container_name: zookeeper expose:

You need to change that to: ` zookeeper: image: wurstmeister/zookeeper:latest container_name: zookeeper expose:

It should work after doing this for each service (other than kafka1 and kafka2)