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 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南