Confluent Control Center not starting for cp-all-in-one docker file

Viewed 679

I am running Confluent Platform all-in-one docker-compose file on my Mac by the steps described in this confluent doc. However, when every container is up (checked using docker-compose ps), I cannot reach the Control Center web interface at http://localhost:9021/. I waited a lot, so it could not be an issue with starting up. I also checked the url with IP of the docker image plus port 9021 - still unable to connect.

Why could that be, and how can I fix that?

1 Answers

I was also facing same problem and was able to fix it by using .arm64 based images as I was having mac with Apple M1 Pro chipset. So, in the default docker-compose.yml image names I just appended .arm64 at the end and it started working for me.

I hope it helps for someone in future.

Related