jessica
jessica

Reputation: 2610

kafka + confluent control center + how to get non enterprise version

We installed the docker confluent control center as the following

 $ docker run -d \
  --name=control-center \
  --net=confluent \
  --ulimit nofile=16384:16384 \
  -p 9021:9021 \
  -v /tmp/control-center/data:/var/lib/confluent-control-center \
  -e CONTROL_CENTER_ZOOKEEPER_CONNECT=zookeeper:2181 \
  -e CONTROL_CENTER_BOOTSTRAP_SERVERS=kafka:9092 \
  -e CONTROL_CENTER_REPLICATION_FACTOR=1 \
  -e CONTROL_CENTER_MONITORING_INTERCEPTOR_TOPIC_PARTITIONS=1 \
  -e CONTROL_CENTER_INTERNAL_TOPICS_PARTITIONS=1 \
  -e CONTROL_CENTER_STREAMS_NUM_STREAM_THREADS=2 \
  -e CONTROL_CENTER_CONNECT_CLUSTER=http://kafka-connect:8082 \
  confluentinc/cp-enterprise-control-center:5.0.0

after installation:

 #  docker-compose ps
               Name                           Command            State                     Ports
-------------------------------------------------------------------------------------------------------------------
control-center                       /etc/confluent/docker/run   Up      0.0.0.0:9021->9021/tcp

Confluent Control Center is a web-based tool for managing and monitoring Apache Kafka. This portion of the quick start provides an overview of how to use Confluent Control Center with console producers and consumers to monitor consumption and latency

But the problem is - cp-enterprise-control-center need license and not free tool

enter image description here

My question is , since Control center is important for managing and monitoring , we want to understand if we can use somewhere control-center that isn’t enterprise and free

example of the confluent control center view

enter image description here

Upvotes: 2

Views: 8387

Answers (1)

Rohit Yadav
Rohit Yadav

Reputation: 2568

Kafka Confluent Control Centre is not available as free . Trial version is available for one month. There is other product called lenses , you can also check that.

Upvotes: 3

Related Questions