You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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: - "2181" volumes: - kafka_zookeeper:/opt/zookeeper-3.4.13/data networks: kafkanet: ipv4_address: 172.25.0.11
You need to change that to: zookeeper: image: wurstmeister/zookeeper:latest container_name: zookeeper expose: - "2181" ports: - 2181:2181 volumes: - kafka_zookeeper:/opt/zookeeper-3.4.13/data networks: kafkanet: ipv4_address: 172.25.0.11
It should work after doing this for each service (other than kafka1 and kafka2)
Please let me know how to access the url http://172.25.0.19:8080/#/notebook/2EAB941ZD.
The text was updated successfully, but these errors were encountered: