[Question] Zookeeper communication issue (strimzi-operator version >= 0.18.0)
See original GitHub issueHi all, on earlier version (strimzi<=0.16.0 for example) I can communicate with zookeeper using initContainer, check that it’s up and running using next script:
result=1; until [ $result -eq 0 ]; do OK=$(echo ruok | nc -w 1 octopus-zookeeper-nodes 21810 ); if [ "$OK" == "imok" ]; then result=0; echo "zookeeper returned imok!"; else echo waiting for zookeeper to be ready; sleep 1; fi; done; echo "Success: zookeeper is up"
Now it not works with port 21810 and even with 2181,12181…
Is port 21810 is not usable now? Could you please advise how can now we should communicate with zookeeper without authorization?
Issue Analytics
- State:
- Created 3 years ago
- Comments:12 (6 by maintainers)
Top Results From Across the Web
Using Strimzi (0.18.0)
Strimzi provides a way to run an Apache Kafka cluster on Kubernetes in various deployment configurations.
Read more >AI Manager known issues and limitations - IBM
Persistence service fails and causes system instability and failures with the Event Grouping service; Strimzi operator conflict with OpenShift 4.5 causing ...
Read more >Strimzi Kafka Zookeeper not starting - Stack Overflow
i'm trying to deploy kafka using strimzi, but zookeeper keep throwing ... This is a problem of how your DNS works and how...
Read more >External Access of Apache Kafka on OpenShift - mimacom blog
Containers are a solution to the problem of how to get the software to run ... We will deploy a Kafka cluster with...
Read more >1861772 – amq-streams-cluster-operator couldn't start on IPv6 ...
The problem seems to be related to a bug in the okhttp3 library that ... .generex-1.0.2.redhat-1.jar:lib/io.strimzi.operator-common-0.18.0.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Well, that is one of the reasons the zoo-entrance mini-project exists. But Zookeeper will be gone from Kafka soon - so I think using any tool which requires Zookeeper is a liability these days.
By the way some tools like CMAK, kafka-tools and confluent control center need to connect to zookeeper too.