You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 23, 2019. It is now read-only.
after any changes in web interface kafka-manager goes into loop with this:
kafka-manager_1 | [info] o.a.z.ClientCnxn - Opening socket connection to server localhost/127.0.0.1:2181. Will not attempt to authenticate using SASL (unknown error)
kafka-manager_1 | [warn] o.a.z.ClientCnxn - Session 0x0 for server null, unexpected error, closing socket connection and attempting reconnect
kafka-manager_1 | java.net.ConnectException: Connection refused
Tried running manager separately and with fixed host ip still the same, seems it can't connect to zookeeper.
The text was updated successfully, but these errors were encountered:
@EdgarsK, you need to add your zookeeper host properly.
I failed doing this earlier(yielding the error you've mentioned) because I was configuring cluster with wrong zookeeper host - I thought it should be localhost:2141(because it is on my local machine, but docker is doing another network in your local machine as far as I know), but if you notice your docker-compose.yml you might see that network that docker creates is actually zookeeper:2141 so you need to configure cluster with zookeeper:2141 instead of localhost:2141.
This thing resolved the issue for me, hope it helps in future as well.
Regards,
YV
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
after any changes in web interface kafka-manager goes into loop with this:
kafka-manager_1 | [info] o.a.z.ClientCnxn - Opening socket connection to server localhost/127.0.0.1:2181. Will not attempt to authenticate using SASL (unknown error)
kafka-manager_1 | [warn] o.a.z.ClientCnxn - Session 0x0 for server null, unexpected error, closing socket connection and attempting reconnect
kafka-manager_1 | java.net.ConnectException: Connection refused
Tried running manager separately and with fixed host ip still the same, seems it can't connect to zookeeper.
The text was updated successfully, but these errors were encountered: