Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to access the 172.25 ip series #6

Open
ckrath opened this issue Nov 26, 2021 · 1 comment
Open

Unable to access the 172.25 ip series #6

ckrath opened this issue Nov 26, 2021 · 1 comment

Comments

@ckrath
Copy link

ckrath commented Nov 26, 2021

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

@omar94khan
Copy link

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants