the following is based on this quickstart guide here: http://docs.confluent.io/current/cp-docker-images/docs/quickstart.html
In there they demonstrate various kafka/confluent components in their own docker containers, each started with the
--net=host
flag and accessed via
localhost:port
No matter what I do, I am unable to access this from outside the ubuntu server itself, neither via ip nor domain, which they state should work e.g. for the control center. But on the same host, my ubuntu box, everything works fine.
Any idea what the issue could be here? Stuck on this for hours already
Is the problem that you can't access the port (ie telnet not possible) or that you can't make the server works (ie no request are answered by the server)?
There is the
-e KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://localhost:29092 \
, this is the address kafka broker communicates to client for communication (and except on localhost, this obviously won't work...) after initial connexion. You can replacelocalhost
with the ip of your server, it should work properly.To be more specific, there is
listeners
config (default 0.0.0.0:9092) andadvertised.listeners
(default PLAINTEXT://locahost:9092) The client initialize connexion on (bootstrap-server or broker-list) via thelistener
binding. Once this initial connexion is done, the broker will return all advertised.listeners from all brokers in cluster, and this is what is used for later exchanges)From github repo, confluent assign to listener the value of advertised listener, changing the host to 0.0.0.0 (so it will be accessible from remote sure) You can't set 0.0.0.0 to advertised.listeners though, it must be a unique reachable interface