Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Not able to connect to kafka server on google compute engine from local machine

I am running my zookeeper and kafka server on google compute engine. Both are running on default ports(zookeeper on 2181 an kafka on 9092). Both are running on the same instance. I have opened up both the ports as well. In my server.properties I have configured

zookeeper.connect=<InternalIP>:2181
host.name=localhost

If I try to push/consume message form the same server, I am able to do so To push/consume I use

 bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test
 bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic test --from-beginning

However, If try to the same from my local machine I get kafka.common.FailedToSendMessageException in producer and java.net.ConnectException: connection refuesed in case of consumer I try to push/consume via

bin/kafka-console-producer.sh --broker-list <ExternalIP>:9092 --topic topic1
bin/kafka-console-consumer.sh --zookeeper <ExternalIP>:2181 --topic topic1 --from-beginning

Please note that i am able to ping the external ip from my local system.

I have configured the below mentioned firewall rules in compute engine

Description

kafka port enabled
Network

default
Source filter

Allow from any source (0.0.0.0/0)
Allowed protocols and ports

tcp:9092

Description

zookeeper port enabled
Network

default
Source filter

Allow from any source (0.0.0.0/0)
Allowed protocols and ports

tcp:2181
like image 697
BKSingh Avatar asked Sep 27 '15 19:09

BKSingh


People also ask

How do I connect to a Kafka remote server?

Configure a remote connection to the Kafka Broker To access your Kafka Broker remotely, make sure to open port 9092 in AWS. Log in to your AWS. Go to your instance Description tab and click on security group created. Include a new Inboud Rule for Port 9092.


1 Answers

You must access to the cloud compute VM instance through SSH, then edit the kafka configuration file.

$ sudo vim /opt/bitnami/kafka/config/server.properties

Uncomment the line # advertised.listeners=PLAINTEXT://:9092 and replace with advertised.listeners=PLAINTEXT://[instance_public_id_address]:9092

As a last step restart the kafka service

sudo /opt/bitnami/ctlscript.sh restart

It's important to consider which the default IP address of the GCP compute VM is ephemeral so you must change it to static in the GCP Configuration panel of the Kafka instance, in order to avoid change the configuration file each time that the IP address changes.

like image 179
Gonzalo Bahamondez Avatar answered Jan 13 '23 04:01

Gonzalo Bahamondez