This repository has been archived by the owner on May 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 703
Kafka broker fails during startup #883
Comments
This must be similar to #461 |
I do not know if it is related but I am getting the same issue with docker 3.0.0 and I am also getting no space left on disk error event though I have over 30 GB worth of room. |
This happening as well, seems to be happening on later versions of kafka from what I can tell. When inspecting the container, it says it should have write privelage
Seems I'm version 6.1.1
|
Having the same issue, both on confluent zookeeper and kafka images, any movement on this? |
Using the absolute path You can see my fix here. |
Seting
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
We are currently in confluent 5.3.1 kafka, we need to upgrade to 5.3.2.
We use incubator helm charts to setup kafka nodes in k8's cluster.
We have customised image to include below in our docker file as shown below, basically we wanted kafka to run as a non root user.
FROM confluentinc/cp-kafka:5.3.1
........
RUN groupadd -g 1001 myuser
&& useradd -r -m -u 1001 -g myuser myuser
&& chown -R myuser:myuser /var/lib/kafka
&& chown -R myuser:myuser /var/log/kafka
With above it works with 5.3.1 but when I just change the version to 5.3.2 in above docker file, it fails as shown below;
===> User
uid=1001(myuser) gid=1001(myuser) groups=1001(insight),3000
===> Configuring ...
===> Running preflight checks ...
===> Check if /var/lib/kafka/data is writable ...
Command [/usr/local/bin/dub path /var/lib/kafka/data writable] FAILED !
I have made sure the folder permissions are same in both the cases.
This looks like a regression, Did someone face this issue? If yes, can you please let me know what is the solution ?
Many thanks.
Robin Kuttaiah
The text was updated successfully, but these errors were encountered: