Questions tagged [sasl-scram]
32 questions
1
vote
1 answer
Kafka2.2.0 with SASL-SCRAM - SSL peer is not authenticated, returning ANONYMOUS instead
Kafka SSL peer is not authenticated, returning ANONYMOUS instead error when client connecting the brokers SASL port, it allows the connection on PLAINTEXT or SSL ports.
I have kafka 2.2.0 in windows systems with SSL enabled, where the kafka broker…

Venkata Madhu
- 93
- 1
- 14
1
vote
1 answer
SCRAM Client Javascript implementation/example/library?
Few months ago I've created a small Java library that provides functionality for both client and server. Yesterday one of its users asked me for an example how to implement a SCRAM login on his web site on the client, i.e. browser (he already uses…

Ognyan
- 13,452
- 5
- 64
- 82
0
votes
0 answers
Bitnami Kafka helm chart has authentication error while trying to run producer inside of the client pod
I am using the Bitnami kafka helm chart and I am following the commands to create a client to run producer and consumer on it. My helm version is v3.12.3. I get this authentication error when I try to run producer console to create a simple test…

Paria
- 1
- 2
0
votes
0 answers
Apache Kafka SASL_SSL configure failure ( ERROR SASL authentication failed using login context 'Client'.)
I want to set up Kafka with SASL_SSL in a docker enviroment
kafka should be albe to recives message encrypted over the puplic internet
in addition, telegraf grafana and more are used in the backend everything runs flawlessly
only the zookeeper and…

FoxxDE
- 1
- 1
0
votes
0 answers
confluentinc/cp-kafka - No JAAS configuration section named 'Client' was found in specified JAAS configuration file
I'm trying to setup Kafka using the Confluent Docker image with SASL/SCRAM. I mainly followed the kafka-docker-playground repo section for SCRAM.
Here's my config:
docker-compose.yml
---
version: '3.5'
services:
zookeeper:
image:…

dumas12
- 1
- 2
0
votes
1 answer
Kafka Broker Failed Authentication - invalid credentials
For the last day or so I have trying to setup locally using confluent docker images, Kafka cluster with one node. Unfortunately, haven't been able to do so. Below are all my config files:
/etc/kafka/secrets/zookeeper_server_jaas.conf
Server {
…

stosik
- 43
- 5
0
votes
1 answer
Is there a parameter for the authentification mechanism for MongoDb Connection when using Powershell?
I want to do a Mongodump Backup of a database using a Powershell Skript, which i got from this page:
text
I am getting an error which relates to a wrong authentification mechanism (SCRAM-SHA-1 instead of SCRAM-SHA-256) but i couldt not find an…

Blümchenpeter
- 1
- 1
0
votes
0 answers
Can not start python kafka consumer using SASL/SCRAM
I'm having an issue with Kafka. Whenever the consumer use SASL_SSL or SASL_PLAINTEXT, it can't start. Without SASL, PLAINTEXT and SSL work fine.
Below are my configurations and…

huynp
- 44
- 4
0
votes
1 answer
How to configure Kafka for Clickhouse whithout an error being thrown?
I have two Kafka clusters, the first — Kafka-A — uses a "SASL SCRAM-SHA-256" mechanism to authenticate,the other — Kafka-B — has no configuration set for it.
To be able to connect to Kafka-A in Clickhouse, I configured a config.xml file as…

姜冠宇
- 1
- 1
0
votes
1 answer
confluent-kafka consumer working but not producer
Using confluent-kafka, I'm trying to work out with Amazon MSK. It seems to connect to MSK since consumer is working but producer is not producing anything. I checked with kafka-console-producer.sh that consumer module is working correctly.
We have…

ChrisNex
- 1
- 1
0
votes
0 answers
SASL/SCRAM works with confluentinc images, but fails with wurstmeister
I have SASL/SCRAM config working with confluentinc kafka/zookeeper:
docker-compose.yml
# Based on: https://github.com/iwpnd/tile38-kafka-sasl
version: "2"
services:
zookeeper:
image: confluentinc/cp-zookeeper:6.0.1
hostname: zookeeper
…

4082N
- 1
0
votes
1 answer
NullPointerException exception while connecting to Kafka broker with SASL/SCRAM
We have configured two Kafka broker in application.YAML, one with SASL KERBEROS and the other one with SASL SCRAM. While starting the service it's connecting to broker with SASL KERBEROS and getting below error for other broker (SASL SCRAM). When we…

Yeldho Thomas
- 1
- 1
0
votes
1 answer
Configure Apache KAFKA with external and internal listeners and SASL Authentication for external publish/subscribe
I want to configure Kafka authentication (just authentication no encryption is needed by now) using 2 listeners:
one for interbroker private comunication with PLAINTEXT security
one for consumer/producers public communication with SASL_PLAINTEXT…

Ripley_A0
- 13
- 5
0
votes
0 answers
How can I use C# and the SslStream class to open a connection with TLS channel binding?
I am attempting to implement SCRAM-SHA-1-PLUS in my XMPP library and I am stuck at the point of getting channel binding to work. I have a ChannelBinding object from the TransportContext of my SslStream but the value is not what the server is…

Coder2000
- 281
- 3
- 12
0
votes
1 answer
Mongodump with authenticationMechanism SCRAM-SHA-1
I have following mongo docker image:
FROM ubuntu
RUN apt-get update
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
RUN echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | tee…

Rudziankoŭ
- 10,681
- 20
- 92
- 192