skip to Main Content

500 Internal Server Error Error while creating AdminClient for Cluster Default – Docker

I get an error when I try to view topics and consumers using UI for apache kafka docker command i use: docker run -p 8080:8080 -e KAFKA_CLUSTERS_0_ZOOKEEPER=2181:2181 -e KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS=127.0.0.1:9092 -d provectuslabs/kafka-ui:latest or docker-compose.yml file services: kafka-ui: container_name: kafka-ui image: provectuslabs/kafka-ui:latest…

VIEW QUESTION

How to use the Kafka exporter Docker image?

I'm trying to use the Kafka Exporter packaged by Bitnami, https://github.com/bitnami/bitnami-docker-kafka-exporter, together with the Bitnami image for Kafka, https://github.com/bitnami/bitnami-docker-kafka. I'm trying to run the following docker-compose.yml: version: '2' networks: app-tier: driver: bridge services: zookeeper: image: 'bitnami/zookeeper:latest' environment: - 'ALLOW_ANONYMOUS_LOGIN=yes' networks:…

VIEW QUESTION

Apple M1: can't start the confluent control center using docker

I would like to start the Confluent control center using docker as prescribed in the document: https://docs.confluent.io/platform/current/quickstart/ce-docker-quickstart.html This is the docker-compose.yaml file they provided; --- version: '2' services: zookeeper: image: confluentinc/cp-zookeeper:5.5.0 hostname: zookeeper container_name: zookeeper ports: - "2181:2181" environment: ZOOKEEPER_CLIENT_PORT:…

VIEW QUESTION
Back To Top
Search