Unable to access AWS MSK cluster using public endpoint from local machine

0

I am unable to access the public endpoint from local machine using IAM authentication via .net. Token is getting generated in the code via OAuthBearer which is IAM in this case. Broker allows IAM authentication in the cluster and it has been tested via client machine(EC2). NACL and security groups of the VPC are updated accordingly but while producing message via code getting error "Local: Message Time out".

RKaur
已提问 4 个月前522 查看次数
2 回答
0

In most cases Timeout exception is coming when security groups (SG) or network aren't configured correctly.

The easiest way to test network connectivity, is to run telnet to the port 9198 of any/each of the brokers. Expected results:

$ telnet b-1.msk.aaaaa.c1.kafka.us-west-2.amazonaws.com 9198
Trying 10.0.1.1...
Connected to b-1.msk.aaaaa.c1.kafka.us-west-2.amazonaws.com.
Escape character is '^]'.

If there is a connectivity, please update your question with the details of client properties and which lang is used.

AWS
EdbE
已回答 4 个月前
profile picture
专家
已审核 1 个月前
0

Telnet command provided above was working as expected. I am using IAM authentication with public endpoint. Client properties are as follows. "EnableDeliveryReports": "true", "RequestTimeoutMs": "60000", "SaslMechanism": "OAuthBearer", "SecurityProtocol": "SaslPlaintext"

Language used is C#. Was able to resolve the issue by changing security protocol to SaslSsl

RKaur
已回答 4 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则