hey team I'm trying to run locally the datahub and...
# troubleshoot
s
hey team I'm trying to run locally the datahub and see that
broker
has not been started. I found following error message there:
Copy code
2023-06-03 20:48:41 [2023-06-03 17:48:41,171] ERROR Fatal error during KafkaServer startup. Prepare to shutdown (kafka.server.KafkaServer)
2023-06-03 20:48:41 kafka.common.InconsistentClusterIdException: The Cluster ID BMDP-W0MR6aquQ37huXxUw doesn't match stored clusterId Some(AQAbmr5wQuWXANgHiNq9GA) in meta.properties. The broker is trying to join the wrong cluster. Configured zookeeper.connect may be wrong.
2023-06-03 20:48:41     at kafka.server.KafkaServer.startup(KafkaServer.scala:230)
2023-06-03 20:48:41     at kafka.Kafka$.main(Kafka.scala:109)
2023-06-03 20:48:41     at kafka.Kafka.main(Kafka.scala)
I tried to restart few times but no luck. I'm using the version
0.10.3.1
any suggestion?
1
b
Run
docker volume ls
, list the volumes and remove the volumes for broker and zookeeper using
Copy code
docker volume rm xx
Then restart quickstart
s
eventually, it helped. Re-started many times and do cleaning after each time.
h
I realize this is an old thread, but in case anyone else stumbles across it... I had to jump through a few hoops to get the volume removed. I more or less had to follow these steps: https://stackoverflow.com/questions/34658836/docker-is-in-volume-in-use-but-there-arent-any-docker-containers#comment81878760_34658836 -- and then stop and remove all docker containers before running quickstart